~ubuntu-branches/ubuntu/dapper/curl/dapper-security

« back to all changes in this revision

Viewing changes to lib/content_encoding.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2005-03-23 18:41:29 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050323184129-le70d05a0hk5w62j
Tags: 7.12.3-2ubuntu3
Fix the version numbers internal to debian/rules.  Closes; #8088

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/***************************************************************************
2
 
 *                                  _   _ ____  _     
3
 
 *  Project                     ___| | | |  _ \| |    
4
 
 *                             / __| | | | |_) | |    
5
 
 *                            | (__| |_| |  _ <| |___ 
 
2
 *                                  _   _ ____  _
 
3
 *  Project                     ___| | | |  _ \| |
 
4
 *                             / __| | | | |_) | |
 
5
 *                            | (__| |_| |  _ <| |___
6
6
 *                             \___|\___/|_| \_\_____|
7
7
 *
8
8
 * Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
10
10
 * This software is licensed as described in the file COPYING, which
11
11
 * you should have received as part of this distribution. The terms
12
12
 * are also available at http://curl.haxx.se/docs/copyright.html.
13
 
 * 
 
13
 *
14
14
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
15
 * copies of the Software, and permit persons to whom the Software is
16
16
 * furnished to do so, under the terms of the COPYING file.
18
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
19
 * KIND, either express or implied.
20
20
 *
21
 
 * $Id: content_encoding.h,v 1.7 2004/01/07 09:19:35 bagder Exp $
 
21
 * $Id: content_encoding.h,v 1.8 2004/08/16 13:24:01 bagder Exp $
22
22
 ***************************************************************************/
23
23
#include "setup.h"
24
24
 
31
31
#define ALL_CONTENT_ENCODINGS "identity"
32
32
#endif
33
33
 
34
 
CURLcode Curl_unencode_deflate_write(struct SessionHandle *data, 
35
 
                                     struct Curl_transfer_keeper *k, 
 
34
CURLcode Curl_unencode_deflate_write(struct SessionHandle *data,
 
35
                                     struct Curl_transfer_keeper *k,
36
36
                                     ssize_t nread);
37
37
 
38
38
CURLcode
39
 
Curl_unencode_gzip_write(struct SessionHandle *data, 
 
39
Curl_unencode_gzip_write(struct SessionHandle *data,
40
40
                         struct Curl_transfer_keeper *k,
41
41
                         ssize_t nread);