~ubuntu-branches/ubuntu/hardy/wget/hardy-security

« back to all changes in this revision

Viewing changes to src/ssl.h

  • Committer: Bazaar Package Importer
  • Author(s): Noèl Köthe
  • Date: 2005-06-26 16:46:25 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050626164625-jjcde8hyztx7xq7o
Tags: 1.10-2
* wget-fix_error--save-headers patch from upstream
  (closes: Bug#314728)
* don't pattern-match server redirects patch from upstream
  (closes: Bug#163243)
* correct de.po typos
  (closes: Bug#313883)
* wget-E_html_behind_file_counting fix problem with adding the
  numbers after the html extension
* updated Standards-Version: to 3.6.2

Show diffs side-by-side

added added

removed removed

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