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

« back to all changes in this revision

Viewing changes to include/curl/curl.h

  • Committer: Package Import Robot
  • Author(s): Michael Vogt
  • Date: 2014-07-11 14:37:53 UTC
  • mfrom: (3.4.48 sid)
  • Revision ID: package-import@ubuntu.com-20140711143753-bdg0abifs1fa2wk1
Tags: 7.37.0-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from binary package Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 1998 - 2014, 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
754
754
  CURLFTPMETHOD_LAST       /* not an option, never use */
755
755
} curl_ftpmethod;
756
756
 
 
757
/* bitmask defines for CURLOPT_HEADEROPT */
 
758
#define CURLHEADER_UNIFIED  0
 
759
#define CURLHEADER_SEPARATE (1<<0)
 
760
 
757
761
/* CURLPROTO_ defines are for the CURLOPT_*PROTOCOLS options */
758
762
#define CURLPROTO_HTTP   (1<<0)
759
763
#define CURLPROTO_HTTPS  (1<<1)
903
907
  /* Set cookie in request: */
904
908
  CINIT(COOKIE, OBJECTPOINT, 22),
905
909
 
906
 
  /* This points to a linked list of headers, struct curl_slist kind */
 
910
  /* This points to a linked list of headers, struct curl_slist kind. This
 
911
     list is also used for RTSP (in spite of its name) */
907
912
  CINIT(HTTPHEADER, OBJECTPOINT, 23),
908
913
 
909
914
  /* This points to a linked list of post entries, struct curl_httppost */
1581
1586
   * Expect: 100-continue header before sending the data anyway. */
1582
1587
  CINIT(EXPECT_100_TIMEOUT_MS, LONG, 227),
1583
1588
 
 
1589
  /* This points to a linked list of headers used for proxy requests only,
 
1590
     struct curl_slist kind */
 
1591
  CINIT(PROXYHEADER, OBJECTPOINT, 228),
 
1592
 
 
1593
  /* Pass in a bitmask of "header options" */
 
1594
  CINIT(HEADEROPT, LONG, 229),
 
1595
 
1584
1596
  CURLOPT_LASTENTRY /* the last unused */
1585
1597
} CURLoption;
1586
1598