~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to lib/gtls.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mto: (1.2.1 upstream) (3.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-geixkwhe3izccjt7
Tags: upstream-7.19.4
ImportĀ upstreamĀ versionĀ 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: gtls.h,v 1.5 2007-09-27 02:45:58 danf Exp $
 
23
 * $Id: gtls.h,v 1.10 2009-02-12 20:48:43 danf Exp $
24
24
 ***************************************************************************/
 
25
 
 
26
#ifdef USE_GNUTLS
 
27
 
25
28
int Curl_gtls_init(void);
26
29
int Curl_gtls_cleanup(void);
27
30
CURLcode Curl_gtls_connect(struct connectdata *conn, int sockindex);
35
38
 
36
39
/* return number of sent (non-SSL) bytes */
37
40
ssize_t Curl_gtls_send(struct connectdata *conn, int sockindex,
38
 
                       void *mem, size_t len);
 
41
                       const void *mem, size_t len);
39
42
ssize_t Curl_gtls_recv(struct connectdata *conn, /* connection data */
40
43
                       int num,                  /* socketindex */
41
44
                       char *buf,                /* store read data here */
44
47
void Curl_gtls_session_free(void *ptr);
45
48
size_t Curl_gtls_version(char *buffer, size_t size);
46
49
int Curl_gtls_shutdown(struct connectdata *conn, int sockindex);
47
 
 
 
50
int Curl_gtls_seed(struct SessionHandle *data);
 
51
 
 
52
/* API setup for GnuTLS */
 
53
#define curlssl_init Curl_gtls_init
 
54
#define curlssl_cleanup Curl_gtls_cleanup
 
55
#define curlssl_connect Curl_gtls_connect
 
56
#define curlssl_session_free(x)  Curl_gtls_session_free(x)
 
57
#define curlssl_close_all Curl_gtls_close_all
 
58
#define curlssl_close Curl_gtls_close
 
59
#define curlssl_shutdown(x,y) Curl_gtls_shutdown(x,y)
 
60
#define curlssl_set_engine(x,y) (x=x, y=y, CURLE_FAILED_INIT)
 
61
#define curlssl_set_engine_default(x) (x=x, CURLE_FAILED_INIT)
 
62
#define curlssl_engines_list(x) (x=x, (struct curl_slist *)NULL)
 
63
#define curlssl_send Curl_gtls_send
 
64
#define curlssl_recv Curl_gtls_recv
 
65
#define curlssl_version Curl_gtls_version
 
66
#define curlssl_check_cxn(x) (x=x, -1)
 
67
#define curlssl_data_pending(x,y) (x=x, y=y, 0)
 
68
 
 
69
#endif /* USE_GNUTLS */
48
70
#endif