reindent-20030715
[openafs.git] / src / auth / auth.p.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #ifndef __AUTH_AFS_INCL_
11 #define __AUTH_AFS_INCL_    1
12
13 #include <rx/rxkad.h>           /* to get ticket parameters/contents */
14
15 /* super-user pincipal used by servers when talking to other servers */
16 #define AUTH_SUPERUSER        "afs"
17
18 struct ktc_token {
19     afs_int32 startTime;
20     afs_int32 endTime;
21     struct ktc_encryptionKey sessionKey;
22     short kvno;                 /* XXX UNALIGNED */
23     int ticketLen;
24     char ticket[MAXKTCTICKETLEN];
25 };
26
27 #ifdef AFS_NT40_ENV
28 extern int ktc_SetToken(struct ktc_principal *server, struct ktc_token *token,
29                         struct ktc_principal *client, afs_int32 flags);
30
31 extern int ktc_GetToken(struct ktc_principal *server, struct ktc_token *token,
32                         int tokenLen, struct ktc_principal *client);
33
34 extern int ktc_ListTokens(int cellNum, int *cellNumP,
35                           struct ktc_principal *serverName);
36
37 extern int ktc_ForgetToken(struct ktc_principal *server);
38
39 extern int ktc_ForgetAllTokens(void);
40
41 /* Flags for the flag word sent along with a token */
42 #define PIOCTL_LOGON            0x1     /* invoked from integrated logon */
43
44 #endif /* AFS_NT40_ENV */
45
46 /* Flags for ktc_SetToken() */
47 #define AFS_SETTOK_SETPAG       0x1
48 #define AFS_SETTOK_LOGON        0x2     /* invoked from integrated logon */
49
50 #endif /* __AUTH_AFS_INCL_ */