]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/conf.h
Save work.
[thirdparty/cups.git] / scheduler / conf.h
index e9e0fd80445b286e08f671fe57aa9f317a96766b..650acca145ea4d991bb5d5ecca2e22d02e097e23 100644 (file)
@@ -73,14 +73,6 @@ typedef enum
 #define PRINTCAP_PLIST         2       /* OS X plist format */
 
 
-/*
- * SSL options (bits)...
- */
-
-#define CUPSD_SSL_NONE         0       /* No special options */
-#define CUPSD_SSL_NOEMPTY      1       /* Do not insert empty fragments */
-
-
 /*
  * ServerAlias data...
  */
@@ -236,14 +228,14 @@ VAR const char            **MimeTypes             VALUE(NULL);
                                        /* Array of MIME types */
 
 #ifdef HAVE_SSL
-VAR char               *ServerCertificate      VALUE(NULL);
-                                       /* Server certificate file */
 #  ifdef HAVE_GNUTLS
-VAR char               *ServerKey              VALUE(NULL);
+VAR char               *ServerCertificate      VALUE(NULL),
+                                       /* Server certificate file */
+                       *ServerKey              VALUE(NULL);
                                        /* Server key file */
 #  endif /* HAVE_GNUTLS */
-VAR int                        SSLOptions              VALUE(CUPSD_SSL_NONE);
-                                       /* SSL/TLS options */
+VAR char               *ServerKeychain         VALUE(NULL);
+                                       /* Keychain holding cert + key */
 #endif /* HAVE_SSL */
 
 #ifdef HAVE_LAUNCHD