wmlongrun: Update for modern kernels, *really* release version 0.3.1.
[dockapps.git] / wmnotify / src / ssl.h
blobe9552a71122a18022979b9fbf94c335b4ee01960
1 /*
2 * ssl.h
4 * Copyright (C) 2003 Hugo Villeneuve <hugo@hugovil.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef SSL_H
22 #define SSL_H 1
24 #if HAVE_CONFIG_H
25 # include "config.h"
26 #endif
28 #if HAVE_SSL
30 #include <openssl/ssl.h>
31 #include <openssl/err.h>
33 /* Exported variables */
34 #undef _SCOPE_
35 #ifdef SSL_M
36 # define _SCOPE_ /**/
37 #else
38 # define _SCOPE_ extern
39 #endif
41 #define FAIL -1
43 typedef struct ssl_infos_t {
44 SSL_CTX *ctx;
45 SSL *ssl;
46 } ssl_infos_t;
48 _SCOPE_ ssl_infos_t ssl_infos;
50 SSL_CTX *
51 InitCTX( void );
53 void
54 ShowCerts( SSL *ssl );
56 int
57 InitSSL( int sock_fd );
59 #endif /* HAVE_SSL */
61 #endif /* SSL_H */