~ubuntu-branches/ubuntu/edgy/curl/edgy

« back to all changes in this revision

Viewing changes to lib/ssluse.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-06-29 15:04:24 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060629150424-pn00qumt9sml8p4m
Tags: 7.15.4-1ubuntu1
Synchronize to Debian. Only change left: Removal of stunnel and
libdb4.2-dev build dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 1998 - 2006, 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: ssluse.h,v 1.23 2005/04/07 15:27:14 bagder Exp $
 
23
 * $Id: ssluse.h,v 1.26 2006-06-07 14:14:05 bagder Exp $
24
24
 ***************************************************************************/
25
25
 
26
26
/*
29
29
 
30
30
#include "urldata.h"
31
31
CURLcode Curl_ossl_connect(struct connectdata *conn, int sockindex);
 
32
CURLcode Curl_ossl_connect_nonblocking(struct connectdata *conn, 
 
33
                                       int sockindex, 
 
34
                                       bool *done);
32
35
void Curl_ossl_close(struct connectdata *conn); /* close a SSL connection */
33
36
/* tell OpenSSL to close down all open information regarding connections (and
34
37
   thus session ID caching etc) */
60
63
                       bool *wouldblock);
61
64
 
62
65
size_t Curl_ossl_version(char *buffer, size_t size);
 
66
int Curl_ossl_check_cxn(struct connectdata *cxn);
 
67
int Curl_ossl_seed(struct SessionHandle *data);
63
68
 
64
69
#endif