]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/tls.c
Import CUPS v1.7.1
[thirdparty/cups.git] / scheduler / tls.c
CommitLineData
82cc1f9a 1/*
61515785 2 * "$Id: tls.c 3755 2012-03-30 05:59:14Z msweet $"
82cc1f9a
MS
3 *
4 * TLS support code for the CUPS scheduler.
5 *
6 * Copyright 2012 by Apple Inc.
7 *
8 * These coded instructions, statements, and computer programs are the
9 * property of Apple Inc. and are protected by Federal copyright
10 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
11 * which should have been included with this file. If this file is
12 * file is missing or damaged, see the license at "http://www.cups.org/".
13 */
14
15#include "cupsd.h"
16
17#ifdef HAVE_SSL
18# ifdef HAVE_CDSASSL
19# include "tls-darwin.c"
20# elif defined(HAVE_GNUTLS)
21# include "tls-gnutls.c"
22# elif defined(HAVE_LIBSSL)
23# include "tls-openssl.c"
24# endif /* HAVE_CDSASSL */
25#endif /* HAVE_SSL */
26
27
28/*
61515785 29 * End of "$Id: tls.c 3755 2012-03-30 05:59:14Z msweet $".
82cc1f9a 30 */