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