]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/tls.h
Backport from BEE
[bacula/bacula] / bacula / src / lib / tls.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2005-2014 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from many
7    others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    Bacula® is a registered trademark of Kern Sibbald.
15 */
16 /*
17  * tls.h TLS support functions
18  *
19  * Author: Landon Fuller <landonf@threerings.net>
20  *
21  * This file was contributed to the Bacula project by Landon Fuller
22  * and Three Rings Design, Inc.
23  *
24  * Three Rings Design, Inc. has been granted a perpetual, worldwide,
25  * non-exclusive, no-charge, royalty-free, irrevocable copyright
26  * license to reproduce, prepare derivative works of, publicly
27  * display, publicly perform, sublicense, and distribute the original
28  * work contributed by Three Rings Design, Inc. and its employees to
29  * the Bacula project in source or object form.
30  *
31  * If you wish to license contributions from Three Rings Design, Inc,
32  * under an alternate open source license please contact
33  * Landon Fuller <landonf@threerings.net>.
34  */
35
36 #ifndef __TLS_H_
37 #define __TLS_H_
38
39 /*
40  * Opaque TLS Context Structure.
41  * New TLS Connections are manufactured from this context.
42  */
43 typedef struct TLS_Context TLS_CONTEXT;
44
45 /* Opaque TLS Connection Structure */
46 typedef struct TLS_Connection TLS_CONNECTION;
47
48 #endif /* __TLS_H_ */