diff options
author | Didier Raboud <odyx@debian.org> | 2013-03-19 11:05:58 +0100 |
---|---|---|
committer | Didier Raboud <odyx@debian.org> | 2013-03-19 11:05:58 +0100 |
commit | ea5667a811b20e235ce1975e763469edd1f7f0de (patch) | |
tree | a02b8034aba8666f06fdbc971905ca760b1c3aa7 /scheduler/cert.h | |
parent | 6fd17d1b328ea9230585f7ad1e3c478343157220 (diff) | |
download | cups-upstream/1.6.2.tar.gz |
Imported Upstream version 1.6.2upstream/1.6.2
Diffstat (limited to 'scheduler/cert.h')
-rw-r--r-- | scheduler/cert.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/scheduler/cert.h b/scheduler/cert.h index e456a1ad..fbec27c8 100644 --- a/scheduler/cert.h +++ b/scheduler/cert.h @@ -1,9 +1,9 @@ /* - * "$Id: cert.h 9350 2010-11-04 23:23:25Z mike $" + * "$Id: cert.h 10776 2012-12-17 22:17:08Z mike $" * * Authentication certificate definitions for the CUPS scheduler. * - * Copyright 2007-2010 by Apple Inc. + * Copyright 2007-2012 by Apple Inc. * Copyright 1997-2005 by Easy Software Products. * * These coded instructions, statements, and computer programs are the @@ -23,9 +23,7 @@ typedef struct cupsd_cert_s int pid; /* Process ID (0 for root certificate) */ char certificate[33]; /* 32 hex characters, or 128 bits */ char username[33]; /* Authenticated username */ -#ifdef HAVE_GSSAPI - krb5_ccache ccache; /* Kerberos credential cache */ -#endif /* HAVE_GSSAPI */ + int type; /* AuthType for username */ } cupsd_cert_t; @@ -43,8 +41,7 @@ VAR time_t RootCertTime /* Root certificate update time */ * Prototypes... */ -extern void cupsdAddCert(int pid, const char *username, - void *ccache); +extern void cupsdAddCert(int pid, const char *username, int type); extern void cupsdDeleteCert(int pid); extern void cupsdDeleteAllCerts(void); extern cupsd_cert_t *cupsdFindCert(const char *certificate); @@ -52,5 +49,5 @@ extern void cupsdInitCerts(void); /* - * End of "$Id: cert.h 9350 2010-11-04 23:23:25Z mike $". + * End of "$Id: cert.h 10776 2012-12-17 22:17:08Z mike $". */ |