diff options
Diffstat (limited to 'scheduler/tls.c')
-rw-r--r-- | scheduler/tls.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/scheduler/tls.c b/scheduler/tls.c new file mode 100644 index 00000000..357af741 --- /dev/null +++ b/scheduler/tls.c @@ -0,0 +1,30 @@ +/* + * "$Id: tls.c 10377 2012-03-22 21:14:02Z mike $" + * + * TLS support code for the CUPS scheduler. + * + * Copyright 2012 by Apple Inc. + * + * These coded instructions, statements, and computer programs are the + * property of Apple Inc. and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "LICENSE.txt" + * which should have been included with this file. If this file is + * file is missing or damaged, see the license at "http://www.cups.org/". + */ + +#include "cupsd.h" + +#ifdef HAVE_SSL +# ifdef HAVE_CDSASSL +# include "tls-darwin.c" +# elif defined(HAVE_GNUTLS) +# include "tls-gnutls.c" +# elif defined(HAVE_LIBSSL) +# include "tls-openssl.c" +# endif /* HAVE_CDSASSL */ +#endif /* HAVE_SSL */ + + +/* + * End of "$Id: tls.c 10377 2012-03-22 21:14:02Z mike $". + */ |