summaryrefslogtreecommitdiff
path: root/scheduler/tls.c
blob: 357af7412cdfb41054f33750ddd6f3394c6c4989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 $".
 */