~ubuntu-branches/ubuntu/lucid/curl/lucid-security

« back to all changes in this revision

Viewing changes to lib/qssl.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2009-04-29 11:10:29 UTC
  • mfrom: (3.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090429111029-2j5eiyokfw2bw049
Tags: 7.19.4-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Drop build dependencies: stunnel, libdb4.6-dev, libssh2-1-dev
  - Add build-dependency on openssh-server
  - Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Call automake-1.9 with --add-missing --copy --force
* drop debian/patches/security_CVE-2009-0037.patch 
  - this patch is part of 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
11
11
 *
12
12
 * This software is licensed as described in the file COPYING, which
13
13
 * you should have received as part of this distribution. The terms
20
20
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21
21
 * KIND, either express or implied.
22
22
 *
23
 
 * $Id: qssl.h,v 1.3 2008-05-20 10:21:50 patrickm Exp $
 
23
 * $Id: qssl.h,v 1.5 2008-07-07 10:39:46 patrickm Exp $
24
24
 ***************************************************************************/
25
25
 
26
26
/*
29
29
 
30
30
#include "urldata.h"
31
31
 
 
32
#ifdef USE_QSOSSL
32
33
int Curl_qsossl_init(void);
33
34
void Curl_qsossl_cleanup(void);
34
35
CURLcode Curl_qsossl_connect(struct connectdata * conn, int sockindex);
49
50
size_t Curl_qsossl_version(char * buffer, size_t size);
50
51
int Curl_qsossl_check_cxn(struct connectdata * cxn);
51
52
 
 
53
/* API setup for QsoSSL */
 
54
#define curlssl_init Curl_qsossl_init
 
55
#define curlssl_cleanup Curl_qsossl_cleanup
 
56
#define curlssl_connect Curl_qsossl_connect
 
57
 
 
58
/*  No session handling for QsoSSL */
 
59
#define curlssl_session_free(x)
 
60
#define curlssl_close_all Curl_qsossl_close_all
 
61
#define curlssl_close Curl_qsossl_close
 
62
#define curlssl_shutdown(x,y) Curl_qsossl_shutdown(x,y)
 
63
#define curlssl_set_engine(x,y) CURLE_FAILED_INIT
 
64
#define curlssl_set_engine_default(x) CURLE_FAILED_INIT
 
65
#define curlssl_engines_list(x) NULL
 
66
#define curlssl_send Curl_qsossl_send
 
67
#define curlssl_recv Curl_qsossl_recv
 
68
#define curlssl_version Curl_qsossl_version
 
69
#define curlssl_check_cxn(x) Curl_qsossl_check_cxn(x)
 
70
#define curlssl_data_pending(x,y) 0
 
71
#endif /* USE_QSOSSL */
52
72
#endif