*** empty log message ***
[arla.git] / rxgk / rxgk.h
blob36685bdd069e3a4710de1b6e07bb765e4afe0886
1 /*
2 * Copyright (c) 2004, Stockholms universitet
3 * (Stockholm University, Stockholm Sweden)
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the university nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
34 /* $Id$ */
36 #ifndef __RXGK_H
37 #define __RXGK_H
39 typedef int rxgk_level;
41 struct rxgk_ticket;
43 struct rxgk_keyblock {
44 uint32_t enctype;
45 size_t length;
46 void *data;
49 int32_t
50 rxgk_GetServerInfo(struct rx_connection *con,
51 struct rxgk_ticket **ticket);
53 struct rxgk_server_params {
54 int32_t connection_lifetime;
55 int32_t bytelife;
56 int32_t flags;
57 int32_t level; /* min level */
58 RXGK_Enctypes enctypes;
61 struct rx_securityClass *
62 rxgk_NewServerSecurityObject (rxgk_level min_level,
63 const char *gss_service_name,
64 int32_t (*rxgkService)(struct rx_call *),
65 struct rxgk_server_params *params);
67 struct rx_securityClass *
68 rxgk_NewClientSecurityObject (rxgk_level level,
69 RXGK_Ticket_Crypt *token,
70 struct rxgk_keyblock *key);
72 typedef void (*rxgk_logf)(void *, const char *, ...);
74 void
75 rxgk_set_log(rxgk_logf, void *);
77 void
78 rxgk_log_stdio(void *, const char *, ...);
80 int32_t
81 rxgk_GetServerInfoOld(struct rx_connection *, rxgk_level * ,
82 uint32_t * , char **, char ** );
84 void rxgk_freeInfoOld(char *);
86 int32_t
87 RXGK_ExecuteRequest(struct rx_call *);
89 #endif /* __RXGK_H */