]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/tls.h
Update copyright
[bacula/bacula] / bacula / src / lib / tls.h
1 /*
2  * tls.h TLS support functions
3  *
4  * Author: Landon Fuller <landonf@threerings.net>
5  *
6  * Version $Id$
7  *
8  * This file was contributed to the Bacula project by Landon Fuller
9  * and Three Rings Design, Inc.
10  *
11  * Three Rings Design, Inc. has been granted a perpetual, worldwide,
12  * non-exclusive, no-charge, royalty-free, irrevocable copyright
13  * license to reproduce, prepare derivative works of, publicly
14  * display, publicly perform, sublicense, and distribute the original
15  * work contributed by Three Rings Design, Inc. and its employees to
16  * the Bacula project in source or object form.
17  *
18  * If you wish to license contributions from Three Rings Design, Inc,
19  * under an alternate open source license please contact
20  * Landon Fuller <landonf@threerings.net>.
21  */
22 /*
23    Bacula® - The Network Backup Solution
24
25    Copyright (C) 2005-2006 Free Software Foundation Europe e.V.
26
27    The main author of Bacula is Kern Sibbald, with contributions from
28    many others, a complete list can be found in the file AUTHORS.
29    This program is Free Software; you can redistribute it and/or
30    modify it under the terms of version two of the GNU Lesser General 
31    Public License as published by the Free Software Foundation plus 
32    additions that are listed in the file LICENSE.
33
34    This program is distributed in the hope that it will be useful, but
35    WITHOUT ANY WARRANTY; without even the implied warranty of
36    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
37    Lesser General Public License for more details.
38
39    You should have received a copy of the GNU General Public License
40    along with this program; if not, write to the Free Software
41    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
42    02110-1301, USA.
43
44    Bacula® is a registered trademark ofJohn Walker.
45    The licensor of Bacula is the Free Software Foundation Europe
46    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
47    Switzerland, email:ftf@fsfeurope.org.
48 */
49
50 #ifndef __TLS_H_
51 #define __TLS_H_
52
53 /*
54  * Opaque TLS Context Structure.
55  * New TLS Connections are manufactured from this context.
56  */
57 typedef struct TLS_Context TLS_CONTEXT;
58
59 /* Opaque TLS Connection Structure */
60 typedef struct TLS_Connection TLS_CONNECTION;
61
62 #endif /* __TLS_H_ */