This file is indexed.

/usr/include/afs/ktc.h is in libopenafs-dev 1.8.0~pre5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * Copyright 2000, International Business Machines Corporation and others.
 * All Rights Reserved.
 *
 * This software has been released under the terms of the IBM Public
 * License.  For details, see the LICENSE file in the top-level source
 * directory or online at http://www.openafs.org/dl/license10.html
 */

#ifndef AFS_SRC_AUTH_KTC_H
#define AFS_SRC_AUTH_KTC_H

extern char * ktc_tkt_string(void);
extern char * ktc_tkt_string_uid(afs_uint32);
extern void ktc_set_tkt_string(char *);
extern int ktc_OldPioctl(void);

struct ktc_setTokenData;
struct ktc_tokenUnion;
extern int token_findByType(struct ktc_setTokenData *, int,
			    struct ktc_tokenUnion *);
extern struct ktc_setTokenData *token_buildTokenJar(char *);
extern int token_addToken(struct ktc_setTokenData *, struct ktc_tokenUnion *);
extern int token_replaceToken(struct ktc_setTokenData *,
			      struct ktc_tokenUnion *);
extern int token_SetsEquivalent(struct ktc_setTokenData *,
				struct ktc_setTokenData *);
extern void token_setPag(struct ktc_setTokenData *, int);
extern void token_FreeSet(struct ktc_setTokenData **);
extern void token_freeToken(struct ktc_tokenUnion **);
extern void token_freeTokenContents(struct ktc_tokenUnion *);

struct ktc_token;
struct ktc_principal;
extern int token_extractRxkad(struct ktc_setTokenData *, struct ktc_token *,
			      int *, struct ktc_principal *);
extern int token_importRxkadViceId(struct ktc_tokenUnion **,
                                   struct ktc_token *,
                                   afs_int32);
extern int token_setRxkadViceId(struct ktc_tokenUnion *, afs_int32);
#endif /* AFS_SRC_AUTH_KTC_H */