1/*
2 * "$Id: tls.c 3757 2012-03-30 06:13:47Z msweet $"
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/*
29 * End of "$Id: tls.c 3757 2012-03-30 06:13:47Z msweet $".
30 */
31