source: trunk/essentials/net-misc/wget/src/ssl.h

Last change on this file was 3440, checked in by bird, 18 years ago

wget 1.10.2

File size: 1.5 KB
Line 
1/* SSL support.
2 Copyright (C) 2000 Free Software Foundation, Inc.
3 Contributed by Christian Fraenkel.
4
5This file is part of GNU Wget.
6
7GNU Wget is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12GNU Wget is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with Wget; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21In addition, as a special exception, the Free Software Foundation
22gives permission to link the code of its release of Wget with the
23OpenSSL project's "OpenSSL" library (or with modified versions of it
24that use the same license as the "OpenSSL" library), and distribute
25the linked executables. You must obey the GNU General Public License
26in all respects for all of the code used other than "OpenSSL". If you
27modify this file, you may extend this exception to your version of the
28file, but you are not obligated to do so. If you do not wish to do
29so, delete this exception statement from your version. */
30
31#ifndef GEN_SSLFUNC_H
32#define GEN_SSLFUNC_H
33
34int ssl_init PARAMS ((void));
35int ssl_connect PARAMS ((int));
36int ssl_check_certificate PARAMS ((int, const char *));
37
38#endif /* GEN_SSLFUNC_H */
Note: See TracBrowser for help on using the repository browser.