]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/tls.c
Fix the spinner image on a restart (STR #4475)
[thirdparty/cups.git] / cups / tls.c
CommitLineData
25731360
MS
1/*
2 * "$Id$"
3 *
4 * TLS routines for CUPS.
5 *
6 * Copyright 2007-2014 by Apple Inc.
7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
8 *
9 * This file contains Kerberos support code, copyright 2006 by
10 * Jelmer Vernooij.
11 *
12 * These coded instructions, statements, and computer programs are the
13 * property of Apple Inc. and are protected by Federal copyright
14 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
15 * which should have been included with this file. If this file is
16 * file is missing or damaged, see the license at "http://www.cups.org/".
17 *
18 * This file is subject to the Apple OS-Developed Software exception.
19 */
20
21/*
22 * Include necessary headers...
23 */
24
25#include "cups-private.h"
26#include <fcntl.h>
27#include <math.h>
28#ifdef WIN32
29# include <tchar.h>
30#else
31# include <signal.h>
32# include <sys/time.h>
33# include <sys/resource.h>
34#endif /* WIN32 */
35#ifdef HAVE_POLL
36# include <poll.h>
37#endif /* HAVE_POLL */
38
39
40/*
41 * Local functions...
42 */
43
44#ifdef HAVE_SSL
45# ifdef HAVE_GNUTLS
46# include "tls-gnutls.c"
47# elif defined(HAVE_CDSASSL)
48# include "tls-darwin.c"
49# else
50# include "tls-sspi.c"
51# endif /* HAVE_GNUTLS */
52#endif /* HAVE_SSL */
53
54
55/*
56 * End of "$Id$".
57 */