]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/cert.h
Merge changes from CUPS 1.7svn-r10755.
[thirdparty/cups.git] / scheduler / cert.h
CommitLineData
ef416fc2 1/*
75bd9771 2 * "$Id: cert.h 7383 2008-03-20 20:58:07Z mike $"
ef416fc2 3 *
10d09e33 4 * Authentication certificate definitions for the CUPS scheduler.
ef416fc2 5 *
10d09e33 6 * Copyright 2007-2010 by Apple Inc.
ef416fc2 7 * Copyright 1997-2005 by Easy Software Products.
8 *
9 * These coded instructions, statements, and computer programs are the
bc44d920 10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14 */
15
16/*
17 * Certificate structure...
18 */
19
20typedef struct cupsd_cert_s
21{
22 struct cupsd_cert_s *next; /* Next certificate in list */
23 int pid; /* Process ID (0 for root certificate) */
24 char certificate[33]; /* 32 hex characters, or 128 bits */
25 char username[33]; /* Authenticated username */
5bd77a73
MS
26#ifdef HAVE_GSSAPI
27 krb5_ccache ccache; /* Kerberos credential cache */
28#endif /* HAVE_GSSAPI */
ef416fc2 29} cupsd_cert_t;
30
31
32/*
33 * Globals...
34 */
35
ac884b6a
MS
36VAR cupsd_cert_t *Certs /* List of certificates */
37 VALUE(NULL);
38VAR time_t RootCertTime /* Root certificate update time */
39 VALUE(0);
ef416fc2 40
41
42/*
43 * Prototypes...
44 */
45
5bd77a73
MS
46extern void cupsdAddCert(int pid, const char *username,
47 void *ccache);
ef416fc2 48extern void cupsdDeleteCert(int pid);
49extern void cupsdDeleteAllCerts(void);
db0bd74a 50extern cupsd_cert_t *cupsdFindCert(const char *certificate);
ef416fc2 51extern void cupsdInitCerts(void);
52
53
54/*
75bd9771 55 * End of "$Id: cert.h 7383 2008-03-20 20:58:07Z mike $".
ef416fc2 56 */