~ubuntu-branches/ubuntu/feisty/curl/feisty

« back to all changes in this revision

Viewing changes to lib/http.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2005-07-26 19:03:01 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20050726190301-x2m2vmjgc8fwnic5
Tags: 7.14.0-2ubuntu1
Synchronize with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 *                            | (__| |_| |  _ <| |___
9
9
 *                             \___|\___/|_| \_\_____|
10
10
 *
11
 
 * Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
 
11
 * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
12
12
 *
13
13
 * This software is licensed as described in the file COPYING, which
14
14
 * you should have received as part of this distribution. The terms
21
21
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22
22
 * KIND, either express or implied.
23
23
 *
24
 
 * $Id: http.h,v 1.26 2004/11/24 16:11:36 bagder Exp $
 
24
 * $Id: http.h,v 1.27 2005/02/09 13:06:40 bagder Exp $
25
25
 ***************************************************************************/
26
26
#ifndef CURL_DISABLE_HTTP
27
27
bool Curl_compareheader(char *headerline,     /* line to check */
34
34
                                     char *hostname, int remote_port);
35
35
 
36
36
/* protocol-specific functions set up to be called by the main engine */
37
 
CURLcode Curl_http(struct connectdata *conn);
 
37
CURLcode Curl_http(struct connectdata *conn, bool *done);
38
38
CURLcode Curl_http_done(struct connectdata *, CURLcode);
39
 
CURLcode Curl_http_connect(struct connectdata *conn);
 
39
CURLcode Curl_http_connect(struct connectdata *conn, bool *done);
40
40
 
41
41
/* The following functions are defined in http_chunks.c */
42
42
void Curl_httpchunk_init(struct connectdata *conn);