~ubuntu-branches/ubuntu/saucy/curl/saucy-201307251546

« back to all changes in this revision

Viewing changes to include/curl/curl.h

  • Committer: Bazaar Package Importer
  • Author(s): Ramakrishnan Muthukrishnan
  • Date: 2011-02-28 19:35:36 UTC
  • mto: (3.6.1 experimental) (1.3.1)
  • mto: This revision was merged to the branch mainline in revision 47.
  • Revision ID: james.westby@ubuntu.com-20110228193536-p3a9jawxxofcsz7o
Tags: upstream-7.21.4
ImportĀ upstreamĀ versionĀ 7.21.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1442
1442
  /* send linked-list of name:port:address sets */
1443
1443
  CINIT(RESOLVE, OBJECTPOINT, 203),
1444
1444
 
 
1445
  /* Set a username for authenticated TLS */
 
1446
  CINIT(TLSAUTH_USERNAME, OBJECTPOINT, 204),
 
1447
 
 
1448
  /* Set a password for authenticated TLS */
 
1449
  CINIT(TLSAUTH_PASSWORD, OBJECTPOINT, 205),
 
1450
 
 
1451
  /* Set authentication type for authenticated TLS */
 
1452
  CINIT(TLSAUTH_TYPE, OBJECTPOINT, 206),
 
1453
 
1445
1454
  CURLOPT_LASTENTRY /* the last unused */
1446
1455
} CURLoption;
1447
1456
 
1538
1547
  CURL_SSLVERSION_LAST /* never use, keep last */
1539
1548
};
1540
1549
 
 
1550
enum CURL_TLSAUTH {
 
1551
  CURL_TLSAUTH_NONE,
 
1552
  CURL_TLSAUTH_SRP,
 
1553
  CURL_TLSAUTH_LAST /* never use, keep last */
 
1554
};
 
1555
 
1541
1556
/* symbols to use with CURLOPT_POSTREDIR.
1542
1557
   CURL_REDIR_POST_301 and CURL_REDIR_POST_302 can be bitwise ORed so that
1543
1558
   CURL_REDIR_POST_301 | CURL_REDIR_POST_302 == CURL_REDIR_POST_ALL */
2043
2058
#define CURL_VERSION_SSPI      (1<<11) /* SSPI is supported */
2044
2059
#define CURL_VERSION_CONV      (1<<12) /* character conversions supported */
2045
2060
#define CURL_VERSION_CURLDEBUG (1<<13) /* debug memory tracking supported */
 
2061
#define CURL_VERSION_TLSAUTH_SRP (1<<14) /* TLS-SRP auth is supported */
2046
2062
 
2047
2063
/*
2048
2064
 * NAME curl_version_info()