Base code merged to SPIN 2.4
[platform/upstream/curl.git] / lib / urldata.h
1 #ifndef HEADER_CURL_URLDATA_H
2 #define HEADER_CURL_URLDATA_H
3 /***************************************************************************
4  *                                  _   _ ____  _
5  *  Project                     ___| | | |  _ \| |
6  *                             / __| | | | |_) | |
7  *                            | (__| |_| |  _ <| |___
8  *                             \___|\___/|_| \_\_____|
9  *
10  * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
11  *
12  * This software is licensed as described in the file COPYING, which
13  * you should have received as part of this distribution. The terms
14  * are also available at http://curl.haxx.se/docs/copyright.html.
15  *
16  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17  * copies of the Software, and permit persons to whom the Software is
18  * furnished to do so, under the terms of the COPYING file.
19  *
20  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21  * KIND, either express or implied.
22  *
23  ***************************************************************************/
24
25 /* This file is for lib internal stuff */
26
27 #include "curl_setup.h"
28
29 #define PORT_FTP 21
30 #define PORT_FTPS 990
31 #define PORT_TELNET 23
32 #define PORT_HTTP 80
33 #define PORT_HTTPS 443
34 #define PORT_DICT 2628
35 #define PORT_LDAP 389
36 #define PORT_LDAPS 636
37 #define PORT_TFTP 69
38 #define PORT_SSH 22
39 #define PORT_IMAP 143
40 #define PORT_IMAPS 993
41 #define PORT_POP3 110
42 #define PORT_POP3S 995
43 #define PORT_SMB 445
44 #define PORT_SMBS 445
45 #define PORT_SMTP 25
46 #define PORT_SMTPS 465 /* sometimes called SSMTP */
47 #define PORT_RTSP 554
48 #define PORT_RTMP 1935
49 #define PORT_RTMPT PORT_HTTP
50 #define PORT_RTMPS PORT_HTTPS
51 #define PORT_GOPHER 70
52
53 #define DICT_MATCH "/MATCH:"
54 #define DICT_MATCH2 "/M:"
55 #define DICT_MATCH3 "/FIND:"
56 #define DICT_DEFINE "/DEFINE:"
57 #define DICT_DEFINE2 "/D:"
58 #define DICT_DEFINE3 "/LOOKUP:"
59
60 #define CURL_DEFAULT_USER "anonymous"
61 #define CURL_DEFAULT_PASSWORD "ftp@example.com"
62
63 /* Convenience defines for checking protocols or their SSL based version. Each
64    protocol handler should only ever have a single CURLPROTO_ in its protocol
65    field. */
66 #define PROTO_FAMILY_HTTP (CURLPROTO_HTTP|CURLPROTO_HTTPS)
67 #define PROTO_FAMILY_FTP  (CURLPROTO_FTP|CURLPROTO_FTPS)
68 #define PROTO_FAMILY_POP3 (CURLPROTO_POP3|CURLPROTO_POP3S)
69 #define PROTO_FAMILY_SMB  (CURLPROTO_SMB|CURLPROTO_SMBS)
70 #define PROTO_FAMILY_SMTP (CURLPROTO_SMTP|CURLPROTO_SMTPS)
71
72 #define DEFAULT_CONNCACHE_SIZE 5
73
74 /* length of longest IPv6 address string including the trailing null */
75 #define MAX_IPADR_LEN sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")
76
77 /* Default FTP/IMAP etc response timeout in milliseconds.
78    Symbian OS panics when given a timeout much greater than 1/2 hour.
79 */
80 #define RESP_TIMEOUT (1800*1000)
81
82 #include "cookie.h"
83 #include "formdata.h"
84
85 #ifdef USE_SSLEAY
86 #ifdef USE_OPENSSL
87 #include <openssl/rsa.h>
88 #include <openssl/crypto.h>
89 #include <openssl/x509.h>
90 #include <openssl/pem.h>
91 #include <openssl/ssl.h>
92 #include <openssl/err.h>
93 #ifdef HAVE_OPENSSL_ENGINE_H
94 #include <openssl/engine.h>
95 #endif
96 #ifdef HAVE_OPENSSL_PKCS12_H
97 #include <openssl/pkcs12.h>
98 #endif
99 #else /* SSLeay-style includes */
100 #include <rsa.h>
101 #include <crypto.h>
102 #include <x509.h>
103 #include <pem.h>
104 #include <ssl.h>
105 #include <err.h>
106 #ifdef HAVE_OPENSSL_ENGINE_H
107 #include <engine.h>
108 #endif
109 #ifdef HAVE_OPENSSL_PKCS12_H
110 #include <pkcs12.h>
111 #endif
112 #endif /* USE_OPENSSL */
113 #ifdef USE_GNUTLS
114 #error Configuration error; cannot use GnuTLS *and* OpenSSL.
115 #endif
116 #endif /* USE_SSLEAY */
117
118 #ifdef USE_GNUTLS
119 #include <gnutls/gnutls.h>
120 #endif
121
122 #ifdef USE_POLARSSL
123 #include <polarssl/ssl.h>
124 #include <polarssl/version.h>
125 #if POLARSSL_VERSION_NUMBER<0x01010000
126 #include <polarssl/havege.h>
127 #else
128 #include <polarssl/entropy.h>
129 #include <polarssl/ctr_drbg.h>
130 #endif /* POLARSSL_VERSION_NUMBER<0x01010000 */
131 #endif /* USE_POLARSSL */
132
133 #ifdef USE_CYASSL
134 #undef OCSP_REQUEST  /* avoid cyassl/openssl/ssl.h clash with wincrypt.h */
135 #undef OCSP_RESPONSE /* avoid cyassl/openssl/ssl.h clash with wincrypt.h */
136 #include <cyassl/openssl/ssl.h>
137 #endif
138
139 #ifdef USE_NSS
140 #include <nspr.h>
141 #include <pk11pub.h>
142 #endif
143
144 #ifdef USE_GSKIT
145 #include <gskssl.h>
146 #endif
147
148 #ifdef USE_AXTLS
149 #include <axTLS/ssl.h>
150 #undef malloc
151 #undef calloc
152 #undef realloc
153 #endif /* USE_AXTLS */
154
155 #ifdef USE_SCHANNEL
156 #include "curl_sspi.h"
157 #include <schnlsp.h>
158 #include <schannel.h>
159 #endif
160
161 #ifdef USE_DARWINSSL
162 #include <Security/Security.h>
163 /* For some reason, when building for iOS, the omnibus header above does
164  * not include SecureTransport.h as of iOS SDK 5.1. */
165 #include <Security/SecureTransport.h>
166 #endif
167
168 #ifdef HAVE_NETINET_IN_H
169 #include <netinet/in.h>
170 #endif
171
172 #include "timeval.h"
173
174 #ifdef HAVE_ZLIB_H
175 #include <zlib.h>               /* for content-encoding */
176 #ifdef __SYMBIAN32__
177 /* zlib pollutes the namespace with this definition */
178 #undef WIN32
179 #endif
180 #endif
181
182 #include <curl/curl.h>
183
184 #include "http_chunks.h" /* for the structs and enum stuff */
185 #include "hostip.h"
186 #include "hash.h"
187 #include "splay.h"
188
189 #include "imap.h"
190 #include "pop3.h"
191 #include "smtp.h"
192 #include "ftp.h"
193 #include "file.h"
194 #include "ssh.h"
195 #include "http.h"
196 #include "rtsp.h"
197 #include "smb.h"
198 #include "wildcard.h"
199 #include "multihandle.h"
200
201 #ifdef HAVE_GSSAPI
202 # ifdef HAVE_GSSGNU
203 #  include <gss.h>
204 # elif defined HAVE_GSSMIT
205 #  include <gssapi/gssapi.h>
206 #  include <gssapi/gssapi_generic.h>
207 # else
208 #  include <gssapi.h>
209 # endif
210 #endif
211
212 #ifdef HAVE_LIBSSH2_H
213 #include <libssh2.h>
214 #include <libssh2_sftp.h>
215 #endif /* HAVE_LIBSSH2_H */
216
217 /* Download buffer size, keep it fairly big for speed reasons */
218 #undef BUFSIZE
219 #define BUFSIZE CURL_MAX_WRITE_SIZE
220
221 /* Initial size of the buffer to store headers in, it'll be enlarged in case
222    of need. */
223 #define HEADERSIZE 256
224
225 #define CURLEASY_MAGIC_NUMBER 0xc0dedbadU
226
227 /* Some convenience macros to get the larger/smaller value out of two given.
228    We prefix with CURL to prevent name collisions. */
229 #define CURLMAX(x,y) ((x)>(y)?(x):(y))
230 #define CURLMIN(x,y) ((x)<(y)?(x):(y))
231
232
233 #ifdef HAVE_GSSAPI
234 /* Types needed for krb5-ftp connections */
235 struct krb5buffer {
236   void *data;
237   size_t size;
238   size_t index;
239   int eof_flag;
240 };
241
242 enum protection_level {
243   PROT_NONE, /* first in list */
244   PROT_CLEAR,
245   PROT_SAFE,
246   PROT_CONFIDENTIAL,
247   PROT_PRIVATE,
248   PROT_CMD,
249   PROT_LAST /* last in list */
250 };
251 #endif
252
253 #ifdef USE_SCHANNEL
254 /* Structs to store Schannel handles */
255 struct curl_schannel_cred {
256   CredHandle cred_handle;
257   TimeStamp time_stamp;
258   int refcount;
259   bool cached;
260 };
261
262 struct curl_schannel_ctxt {
263   CtxtHandle ctxt_handle;
264   TimeStamp time_stamp;
265 };
266 #endif
267
268 /* enum for the nonblocking SSL connection state machine */
269 typedef enum {
270   ssl_connect_1,
271   ssl_connect_2,
272   ssl_connect_2_reading,
273   ssl_connect_2_writing,
274   ssl_connect_3,
275   ssl_connect_done
276 } ssl_connect_state;
277
278 typedef enum {
279   ssl_connection_none,
280   ssl_connection_negotiating,
281   ssl_connection_complete
282 } ssl_connection_state;
283
284 /* struct for data related to each SSL connection */
285 struct ssl_connect_data {
286   /* Use ssl encrypted communications TRUE/FALSE, not necessarily using it atm
287      but at least asked to or meaning to use it. See 'state' for the exact
288      current state of the connection. */
289   bool use;
290   ssl_connection_state state;
291 #ifdef USE_NGHTTP2
292   bool asked_for_h2;
293 #endif
294 #ifdef USE_SSLEAY
295   /* these ones requires specific SSL-types */
296   SSL_CTX* ctx;
297   SSL*     handle;
298   X509*    server_cert;
299   ssl_connect_state connecting_state;
300 #endif /* USE_SSLEAY */
301 #ifdef USE_GNUTLS
302   gnutls_session_t session;
303   gnutls_certificate_credentials_t cred;
304 #ifdef USE_TLS_SRP
305   gnutls_srp_client_credentials_t srp_client_cred;
306 #endif
307   ssl_connect_state connecting_state;
308 #endif /* USE_GNUTLS */
309 #ifdef USE_POLARSSL
310   ctr_drbg_context ctr_drbg;
311   entropy_context entropy;
312   ssl_context ssl;
313   ssl_session ssn;
314   int server_fd;
315   x509_crt cacert;
316   x509_crt clicert;
317   x509_crl crl;
318   rsa_context rsa;
319   ssl_connect_state connecting_state;
320 #endif /* USE_POLARSSL */
321 #ifdef USE_CYASSL
322   SSL_CTX* ctx;
323   SSL*     handle;
324   ssl_connect_state connecting_state;
325 #endif /* USE_CYASSL */
326 #ifdef USE_NSS
327   PRFileDesc *handle;
328   char *client_nickname;
329   struct SessionHandle *data;
330   struct curl_llist *obj_list;
331   PK11GenericObject *obj_clicert;
332   ssl_connect_state connecting_state;
333 #endif /* USE_NSS */
334 #ifdef USE_GSKIT
335   gsk_handle handle;
336   int iocport;
337   ssl_connect_state connecting_state;
338 #endif
339 #ifdef USE_AXTLS
340   SSL_CTX* ssl_ctx;
341   SSL*     ssl;
342   ssl_connect_state connecting_state;
343 #endif /* USE_AXTLS */
344 #ifdef USE_SCHANNEL
345   struct curl_schannel_cred *cred;
346   struct curl_schannel_ctxt *ctxt;
347   SecPkgContext_StreamSizes stream_sizes;
348   ssl_connect_state connecting_state;
349   size_t encdata_length, decdata_length;
350   size_t encdata_offset, decdata_offset;
351   unsigned char *encdata_buffer, *decdata_buffer;
352   unsigned long req_flags, ret_flags;
353 #endif /* USE_SCHANNEL */
354 #ifdef USE_DARWINSSL
355   SSLContextRef ssl_ctx;
356   curl_socket_t ssl_sockfd;
357   ssl_connect_state connecting_state;
358   bool ssl_direction; /* true if writing, false if reading */
359   size_t ssl_write_buffered_length;
360 #endif /* USE_DARWINSSL */
361 };
362
363 struct ssl_config_data {
364   long version;          /* what version the client wants to use */
365   long certverifyresult; /* result from the certificate verification */
366
367   bool verifypeer;       /* set TRUE if this is desired */
368   bool verifyhost;       /* set TRUE if CN/SAN must match hostname */
369   bool verifystatus;     /* set TRUE if certificate status must be checked */
370   char *CApath;          /* certificate dir (doesn't work on windows) */
371   char *CAfile;          /* certificate to verify peer against */
372   const char *CRLfile;   /* CRL to check certificate revocation */
373   const char *issuercert;/* optional issuer certificate filename */
374   char *random_file;     /* path to file containing "random" data */
375   char *egdsocket;       /* path to file containing the EGD daemon socket */
376   char *cipher_list;     /* list of ciphers to use */
377   size_t max_ssl_sessions; /* SSL session id cache size */
378   curl_ssl_ctx_callback fsslctx; /* function to initialize ssl ctx */
379   void *fsslctxp;        /* parameter for call back */
380   bool sessionid;        /* cache session IDs or not */
381   bool certinfo;         /* gather lots of certificate info */
382
383 #ifdef USE_TLS_SRP
384   char *username; /* TLS username (for, e.g., SRP) */
385   char *password; /* TLS password (for, e.g., SRP) */
386   enum CURL_TLSAUTH authtype; /* TLS authentication type (default SRP) */
387 #endif
388 };
389
390 /* information stored about one single SSL session */
391 struct curl_ssl_session {
392   char *name;       /* host name for which this ID was used */
393   void *sessionid;  /* as returned from the SSL layer */
394   size_t idsize;    /* if known, otherwise 0 */
395   long age;         /* just a number, the higher the more recent */
396   int remote_port;  /* remote port to connect to */
397   struct ssl_config_data ssl_config; /* setup for this session */
398 };
399
400 /* Struct used for Digest challenge-response authentication */
401 struct digestdata {
402 #if defined(USE_WINDOWS_SSPI)
403   BYTE *input_token;
404   size_t input_token_len;
405 #else
406   char *nonce;
407   char *cnonce;
408   char *realm;
409   int algo;
410   bool stale; /* set true for re-negotiation */
411   char *opaque;
412   char *qop;
413   char *algorithm;
414   int nc; /* nounce count */
415 #endif
416 };
417
418 typedef enum {
419   NTLMSTATE_NONE,
420   NTLMSTATE_TYPE1,
421   NTLMSTATE_TYPE2,
422   NTLMSTATE_TYPE3,
423   NTLMSTATE_LAST
424 } curlntlm;
425
426 #ifdef USE_WINDOWS_SSPI
427 #include "curl_sspi.h"
428 #endif
429
430 #if defined(CURL_DOES_CONVERSIONS) && defined(HAVE_ICONV)
431 #include <iconv.h>
432 #endif
433
434 /* Struct used for GSSAPI (Kerberos V5) authentication */
435 #if defined(USE_KERBEROS5)
436 struct kerberos5data {
437 #if defined(USE_WINDOWS_SSPI)
438   CredHandle *credentials;
439   CtxtHandle *context;
440   TCHAR *spn;
441   SEC_WINNT_AUTH_IDENTITY identity;
442   SEC_WINNT_AUTH_IDENTITY *p_identity;
443   size_t token_max;
444   BYTE *output_token;
445 #else
446   gss_ctx_id_t context;
447   gss_name_t spn;
448 #endif
449 };
450 #endif
451
452 /* Struct used for NTLM challenge-response authentication */
453 #if defined(USE_NTLM)
454 struct ntlmdata {
455   curlntlm state;
456 #ifdef USE_WINDOWS_SSPI
457   CredHandle *credentials;
458   CtxtHandle *context;
459   SEC_WINNT_AUTH_IDENTITY identity;
460   SEC_WINNT_AUTH_IDENTITY *p_identity;
461   size_t token_max;
462   BYTE *output_token;
463   BYTE *input_token;
464   size_t input_token_len;
465 #else
466   unsigned int flags;
467   unsigned char nonce[8];
468   void* target_info; /* TargetInfo received in the ntlm type-2 message */
469   unsigned int target_info_len;
470 #endif
471 };
472 #endif
473
474 #ifdef USE_SPNEGO
475 struct negotiatedata {
476   /* When doing Negotiate (SPNEGO) auth, we first need to send a token
477      and then validate the received one. */
478   enum { GSS_AUTHNONE, GSS_AUTHRECV, GSS_AUTHSENT } state;
479 #ifdef HAVE_GSSAPI
480   OM_uint32 status;
481   gss_ctx_id_t context;
482   gss_name_t server_name;
483   gss_buffer_desc output_token;
484 #else
485 #ifdef USE_WINDOWS_SSPI
486   DWORD status;
487   CredHandle *credentials;
488   CtxtHandle *context;
489   SEC_WINNT_AUTH_IDENTITY identity;
490   SEC_WINNT_AUTH_IDENTITY *p_identity;
491   TCHAR *server_name;
492   size_t token_max;
493   BYTE *output_token;
494   size_t output_token_length;
495 #endif
496 #endif
497 };
498 #endif
499
500
501 /*
502  * Boolean values that concerns this connection.
503  */
504 struct ConnectBits {
505   /* always modify bits.close with the connclose() and connkeep() macros! */
506   bool close; /* if set, we close the connection after this request */
507   bool reuse; /* if set, this is a re-used connection */
508   bool proxy; /* if set, this transfer is done through a proxy - any type */
509   bool httpproxy;    /* if set, this transfer is done through a http proxy */
510   bool user_passwd;    /* do we use user+password for this connection? */
511   bool proxy_user_passwd; /* user+password for the proxy? */
512   bool ipv6_ip; /* we communicate with a remote site specified with pure IPv6
513                    IP address */
514   bool ipv6;    /* we communicate with a site using an IPv6 address */
515
516   bool do_more; /* this is set TRUE if the ->curl_do_more() function is
517                    supposed to be called, after ->curl_do() */
518   bool tcpconnect[2]; /* the TCP layer (or similar) is connected, this is set
519                          the first time on the first connect function call */
520   bool protoconnstart;/* the protocol layer has STARTED its operation after
521                          the TCP layer connect */
522
523   bool retry;         /* this connection is about to get closed and then
524                          re-attempted at another connection. */
525   bool tunnel_proxy;  /* if CONNECT is used to "tunnel" through the proxy.
526                          This is implicit when SSL-protocols are used through
527                          proxies, but can also be enabled explicitly by
528                          apps */
529   bool authneg;       /* TRUE when the auth phase has started, which means
530                          that we are creating a request with an auth header,
531                          but it is not the final request in the auth
532                          negotiation. */
533   bool rewindaftersend;/* TRUE when the sending couldn't be stopped even
534                           though it will be discarded. When the whole send
535                           operation is done, we must call the data rewind
536                           callback. */
537   bool ftp_use_epsv;  /* As set with CURLOPT_FTP_USE_EPSV, but if we find out
538                          EPSV doesn't work we disable it for the forthcoming
539                          requests */
540
541   bool ftp_use_eprt;  /* As set with CURLOPT_FTP_USE_EPRT, but if we find out
542                          EPRT doesn't work we disable it for the forthcoming
543                          requests */
544   bool netrc;         /* name+password provided by netrc */
545   bool userpwd_in_url; /* name+password found in url */
546
547   bool done;          /* set to FALSE when Curl_do() is called and set to TRUE
548                          when Curl_done() is called, to prevent Curl_done() to
549                          get invoked twice when the multi interface is
550                          used. */
551   bool stream_was_rewound; /* Indicates that the stream was rewound after a
552                               request read past the end of its response byte
553                               boundary */
554   bool proxy_connect_closed; /* set true if a proxy disconnected the
555                                 connection in a CONNECT request with auth, so
556                                 that libcurl should reconnect and continue. */
557   bool bound; /* set true if bind() has already been done on this socket/
558                  connection */
559   bool type_set;  /* type= was used in the URL */
560 };
561
562 struct hostname {
563   char *rawalloc; /* allocated "raw" version of the name */
564   char *encalloc; /* allocated IDN-encoded version of the name */
565   char *name;     /* name to use internally, might be encoded, might be raw */
566   const char *dispname; /* name to display, as 'name' might be encoded */
567 };
568
569 /*
570  * Flags on the keepon member of the Curl_transfer_keeper
571  */
572
573 #define KEEP_NONE  0
574 #define KEEP_RECV  (1<<0)     /* there is or may be data to read */
575 #define KEEP_SEND (1<<1)     /* there is or may be data to write */
576 #define KEEP_RECV_HOLD (1<<2) /* when set, no reading should be done but there
577                                  might still be data to read */
578 #define KEEP_SEND_HOLD (1<<3) /* when set, no writing should be done but there
579                                   might still be data to write */
580 #define KEEP_RECV_PAUSE (1<<4) /* reading is paused */
581 #define KEEP_SEND_PAUSE (1<<5) /* writing is paused */
582
583 #define KEEP_RECVBITS (KEEP_RECV | KEEP_RECV_HOLD | KEEP_RECV_PAUSE)
584 #define KEEP_SENDBITS (KEEP_SEND | KEEP_SEND_HOLD | KEEP_SEND_PAUSE)
585
586
587 #ifdef HAVE_LIBZ
588 typedef enum {
589   ZLIB_UNINIT,          /* uninitialized */
590   ZLIB_INIT,            /* initialized */
591   ZLIB_GZIP_HEADER,     /* reading gzip header */
592   ZLIB_GZIP_INFLATING,  /* inflating gzip stream */
593   ZLIB_INIT_GZIP        /* initialized in transparent gzip mode */
594 } zlibInitState;
595 #endif
596
597 #ifdef CURLRES_ASYNCH
598 struct Curl_async {
599   char *hostname;
600   int port;
601   struct Curl_dns_entry *dns;
602   bool done;  /* set TRUE when the lookup is complete */
603   int status; /* if done is TRUE, this is the status from the callback */
604   void *os_specific;  /* 'struct thread_data' for Windows */
605 };
606 #endif
607
608 #define FIRSTSOCKET     0
609 #define SECONDARYSOCKET 1
610
611 /* These function pointer types are here only to allow easier typecasting
612    within the source when we need to cast between data pointers (such as NULL)
613    and function pointers. */
614 typedef CURLcode (*Curl_do_more_func)(struct connectdata *, int *);
615 typedef CURLcode (*Curl_done_func)(struct connectdata *, CURLcode, bool);
616
617 enum expect100 {
618   EXP100_SEND_DATA,           /* enough waiting, just send the body now */
619   EXP100_AWAITING_CONTINUE,   /* waiting for the 100 Continue header */
620   EXP100_SENDING_REQUEST,     /* still sending the request but will wait for
621                                  the 100 header once done with the request */
622   EXP100_FAILED               /* used on 417 Expectation Failed */
623 };
624
625 enum upgrade101 {
626   UPGR101_INIT,               /* default state */
627   UPGR101_REQUESTED,          /* upgrade requested */
628   UPGR101_RECEIVED,           /* response received */
629   UPGR101_WORKING             /* talking upgraded protocol */
630 };
631
632 enum negotiatenpn {
633   NPN_INIT,                   /* default state */
634   NPN_HTTP1_1,                /* HTTP/1.1 negotiated */
635   NPN_HTTP2                   /* HTTP2 (draft-xx) negotiated */
636 };
637
638 /*
639  * Request specific data in the easy handle (SessionHandle).  Previously,
640  * these members were on the connectdata struct but since a conn struct may
641  * now be shared between different SessionHandles, we store connection-specific
642  * data here. This struct only keeps stuff that's interesting for *this*
643  * request, as it will be cleared between multiple ones
644  */
645 struct SingleRequest {
646   curl_off_t size;        /* -1 if unknown at this point */
647   curl_off_t *bytecountp; /* return number of bytes read or NULL */
648
649   curl_off_t maxdownload; /* in bytes, the maximum amount of data to fetch,
650                              -1 means unlimited */
651   curl_off_t *writebytecountp; /* return number of bytes written or NULL */
652
653   curl_off_t bytecount;         /* total number of bytes read */
654   curl_off_t writebytecount;    /* number of bytes written */
655
656   long headerbytecount;         /* only count received headers */
657   long deductheadercount; /* this amount of bytes doesn't count when we check
658                              if anything has been transferred at the end of a
659                              connection. We use this counter to make only a
660                              100 reply (without a following second response
661                              code) result in a CURLE_GOT_NOTHING error code */
662
663   struct timeval start;         /* transfer started at this time */
664   struct timeval now;           /* current time */
665   bool header;                  /* incoming data has HTTP header */
666   enum {
667     HEADER_NORMAL,              /* no bad header at all */
668     HEADER_PARTHEADER,          /* part of the chunk is a bad header, the rest
669                                    is normal data */
670     HEADER_ALLBAD               /* all was believed to be header */
671   } badheader;                  /* the header was deemed bad and will be
672                                    written as body */
673   int headerline;               /* counts header lines to better track the
674                                    first one */
675   char *hbufp;                  /* points at *end* of header line */
676   size_t hbuflen;
677   char *str;                    /* within buf */
678   char *str_start;              /* within buf */
679   char *end_ptr;                /* within buf */
680   char *p;                      /* within headerbuff */
681   bool content_range;           /* set TRUE if Content-Range: was found */
682   curl_off_t offset;            /* possible resume offset read from the
683                                    Content-Range: header */
684   int httpcode;                 /* error code from the 'HTTP/1.? XXX' or
685                                    'RTSP/1.? XXX' line */
686   struct timeval start100;      /* time stamp to wait for the 100 code from */
687   enum expect100 exp100;        /* expect 100 continue state */
688   enum upgrade101 upgr101;      /* 101 upgrade state */
689
690   int auto_decoding;            /* What content encoding. sec 3.5, RFC2616. */
691
692 #define IDENTITY 0              /* No encoding */
693 #define DEFLATE 1               /* zlib deflate [RFC 1950 & 1951] */
694 #define GZIP 2                  /* gzip algorithm [RFC 1952] */
695 #define COMPRESS 3              /* Not handled, added for completeness */
696
697 #ifdef HAVE_LIBZ
698   zlibInitState zlib_init;      /* possible zlib init state;
699                                    undefined if Content-Encoding header. */
700   z_stream z;                   /* State structure for zlib. */
701 #endif
702
703   time_t timeofdoc;
704   long bodywrites;
705
706   char *buf;
707   char *uploadbuf;
708   curl_socket_t maxfd;
709
710   int keepon;
711
712   bool upload_done; /* set to TRUE when doing chunked transfer-encoding upload
713                        and we're uploading the last chunk */
714
715   bool ignorebody;  /* we read a response-body but we ignore it! */
716   bool ignorecl;    /* This HTTP response has no body so we ignore the Content-
717                        Length: header */
718
719   char *location;   /* This points to an allocated version of the Location:
720                        header data */
721   char *newurl;     /* Set to the new URL to use when a redirect or a retry is
722                        wanted */
723
724   /* 'upload_present' is used to keep a byte counter of how much data there is
725      still left in the buffer, aimed for upload. */
726   ssize_t upload_present;
727
728    /* 'upload_fromhere' is used as a read-pointer when we uploaded parts of a
729       buffer, so the next read should read from where this pointer points to,
730       and the 'upload_present' contains the number of bytes available at this
731       position */
732   char *upload_fromhere;
733
734   bool chunk; /* if set, this is a chunked transfer-encoding */
735   bool upload_chunky; /* set TRUE if we are doing chunked transfer-encoding
736                          on upload */
737   bool getheader;     /* TRUE if header parsing is wanted */
738
739   bool forbidchunk;   /* used only to explicitly forbid chunk-upload for
740                          specific upload buffers. See readmoredata() in
741                          http.c for details. */
742
743   void *protop;       /* Allocated protocol-specific data. Each protocol
744                          handler makes sure this points to data it needs. */
745 };
746
747 /*
748  * Specific protocol handler.
749  */
750
751 struct Curl_handler {
752   const char * scheme;        /* URL scheme name. */
753
754   /* Complement to setup_connection_internals(). */
755   CURLcode (*setup_connection)(struct connectdata *);
756
757   /* These two functions MUST be set to be protocol dependent */
758   CURLcode (*do_it)(struct connectdata *, bool *done);
759   Curl_done_func done;
760
761   /* If the curl_do() function is better made in two halves, this
762    * curl_do_more() function will be called afterwards, if set. For example
763    * for doing the FTP stuff after the PASV/PORT command.
764    */
765   Curl_do_more_func do_more;
766
767   /* This function *MAY* be set to a protocol-dependent function that is run
768    * after the connect() and everything is done, as a step in the connection.
769    * The 'done' pointer points to a bool that should be set to TRUE if the
770    * function completes before return. If it doesn't complete, the caller
771    * should call the curl_connecting() function until it is.
772    */
773   CURLcode (*connect_it)(struct connectdata *, bool *done);
774
775   /* See above. Currently only used for FTP. */
776   CURLcode (*connecting)(struct connectdata *, bool *done);
777   CURLcode (*doing)(struct connectdata *, bool *done);
778
779   /* Called from the multi interface during the PROTOCONNECT phase, and it
780      should then return a proper fd set */
781   int (*proto_getsock)(struct connectdata *conn,
782                        curl_socket_t *socks,
783                        int numsocks);
784
785   /* Called from the multi interface during the DOING phase, and it should
786      then return a proper fd set */
787   int (*doing_getsock)(struct connectdata *conn,
788                        curl_socket_t *socks,
789                        int numsocks);
790
791   /* Called from the multi interface during the DO_MORE phase, and it should
792      then return a proper fd set */
793   int (*domore_getsock)(struct connectdata *conn,
794                         curl_socket_t *socks,
795                         int numsocks);
796
797   /* Called from the multi interface during the DO_DONE, PERFORM and
798      WAITPERFORM phases, and it should then return a proper fd set. Not setting
799      this will make libcurl use the generic default one. */
800   int (*perform_getsock)(const struct connectdata *conn,
801                          curl_socket_t *socks,
802                          int numsocks);
803
804   /* This function *MAY* be set to a protocol-dependent function that is run
805    * by the curl_disconnect(), as a step in the disconnection.  If the handler
806    * is called because the connection has been considered dead, dead_connection
807    * is set to TRUE.
808    */
809   CURLcode (*disconnect)(struct connectdata *, bool dead_connection);
810
811   /* If used, this function gets called from transfer.c:readwrite_data() to
812      allow the protocol to do extra reads/writes */
813   CURLcode (*readwrite)(struct SessionHandle *data, struct connectdata *conn,
814                         ssize_t *nread, bool *readmore);
815
816   long defport;           /* Default port. */
817   unsigned int protocol;  /* See CURLPROTO_* - this needs to be the single
818                              specific protocol bit */
819   unsigned int flags;     /* Extra particular characteristics, see PROTOPT_* */
820 };
821
822 #define PROTOPT_NONE 0             /* nothing extra */
823 #define PROTOPT_SSL (1<<0)         /* uses SSL */
824 #define PROTOPT_DUAL (1<<1)        /* this protocol uses two connections */
825 #define PROTOPT_CLOSEACTION (1<<2) /* need action before socket close */
826 /* some protocols will have to call the underlying functions without regard to
827    what exact state the socket signals. IE even if the socket says "readable",
828    the send function might need to be called while uploading, or vice versa.
829 */
830 #define PROTOPT_DIRLOCK (1<<3)
831 #define PROTOPT_NONETWORK (1<<4)   /* protocol doesn't use the network! */
832 #define PROTOPT_NEEDSPWD (1<<5)    /* needs a password, and if none is set it
833                                       gets a default */
834 #define PROTOPT_NOURLQUERY (1<<6)   /* protocol can't handle
835                                         url query strings (?foo=bar) ! */
836 #define PROTOPT_CREDSPERREQUEST (1<<7) /* requires login credentials per
837                                           request instead of per connection */
838
839
840 /* return the count of bytes sent, or -1 on error */
841 typedef ssize_t (Curl_send)(struct connectdata *conn, /* connection data */
842                             int sockindex,            /* socketindex */
843                             const void *buf,          /* data to write */
844                             size_t len,               /* max amount to write */
845                             CURLcode *err);           /* error to return */
846
847 /* return the count of bytes read, or -1 on error */
848 typedef ssize_t (Curl_recv)(struct connectdata *conn, /* connection data */
849                             int sockindex,            /* socketindex */
850                             char *buf,                /* store data here */
851                             size_t len,               /* max amount to read */
852                             CURLcode *err);           /* error to return */
853
854 /*
855  * The connectdata struct contains all fields and variables that should be
856  * unique for an entire connection.
857  */
858 struct connectdata {
859   /* 'data' is the CURRENT SessionHandle using this connection -- take great
860      caution that this might very well vary between different times this
861      connection is used! */
862   struct SessionHandle *data;
863
864   /* chunk is for HTTP chunked encoding, but is in the general connectdata
865      struct only because we can do just about any protocol through a HTTP proxy
866      and a HTTP proxy may in fact respond using chunked encoding */
867   struct Curl_chunker chunk;
868
869   curl_closesocket_callback fclosesocket; /* function closing the socket(s) */
870   void *closesocket_client;
871
872   bool inuse; /* This is a marker for the connection cache logic. If this is
873                  TRUE this handle is being used by an easy handle and cannot
874                  be used by any other easy handle without careful
875                  consideration (== only for pipelining). */
876
877   /**** Fields set when inited and not modified again */
878   long connection_id; /* Contains a unique number to make it easier to
879                          track the connections in the log output */
880
881   /* 'dns_entry' is the particular host we use. This points to an entry in the
882      DNS cache and it will not get pruned while locked. It gets unlocked in
883      Curl_done(). This entry will be NULL if the connection is re-used as then
884      there is no name resolve done. */
885   struct Curl_dns_entry *dns_entry;
886
887   /* 'ip_addr' is the particular IP we connected to. It points to a struct
888      within the DNS cache, so this pointer is only valid as long as the DNS
889      cache entry remains locked. It gets unlocked in Curl_done() */
890   Curl_addrinfo *ip_addr;
891   Curl_addrinfo *tempaddr[2]; /* for happy eyeballs */
892
893   /* 'ip_addr_str' is the ip_addr data as a human readable string.
894      It remains available as long as the connection does, which is longer than
895      the ip_addr itself. */
896   char ip_addr_str[MAX_IPADR_LEN];
897
898   unsigned int scope_id;  /* Scope id for IPv6 */
899
900   int socktype;  /* SOCK_STREAM or SOCK_DGRAM */
901
902   struct hostname host;
903   struct hostname proxy;
904
905   long port;       /* which port to use locally */
906   int remote_port; /* what remote port to connect to, not the proxy port! */
907
908   /* 'primary_ip' and 'primary_port' get filled with peer's numerical
909      ip address and port number whenever an outgoing connection is
910      *attempted* from the primary socket to a remote address. When more
911      than one address is tried for a connection these will hold data
912      for the last attempt. When the connection is actually established
913      these are updated with data which comes directly from the socket. */
914
915   char primary_ip[MAX_IPADR_LEN];
916   long primary_port;
917
918   /* 'local_ip' and 'local_port' get filled with local's numerical
919      ip address and port number whenever an outgoing connection is
920      **established** from the primary socket to a remote address. */
921
922   char local_ip[MAX_IPADR_LEN];
923   long local_port;
924
925   char *user;    /* user name string, allocated */
926   char *passwd;  /* password string, allocated */
927   char *options; /* options string, allocated */
928
929   char *xoauth2_bearer; /* bearer token for xoauth2, allocated */
930
931   char *proxyuser;    /* proxy user name string, allocated */
932   char *proxypasswd;  /* proxy password string, allocated */
933   curl_proxytype proxytype; /* what kind of proxy that is in use */
934
935   int httpversion;        /* the HTTP version*10 reported by the server */
936   int rtspversion;        /* the RTSP version*10 reported by the server */
937
938   struct timeval now;     /* "current" time */
939   struct timeval created; /* creation time */
940   curl_socket_t sock[2]; /* two sockets, the second is used for the data
941                             transfer when doing FTP */
942   curl_socket_t tempsock[2]; /* temporary sockets for happy eyeballs */
943   bool sock_accepted[2]; /* TRUE if the socket on this index was created with
944                             accept() */
945   Curl_recv *recv[2];
946   Curl_send *send[2];
947
948   struct ssl_connect_data ssl[2]; /* this is for ssl-stuff */
949   struct ssl_config_data ssl_config;
950
951   struct ConnectBits bits;    /* various state-flags for this connection */
952
953  /* connecttime: when connect() is called on the current IP address. Used to
954     be able to track when to move on to try next IP - but only when the multi
955     interface is used. */
956   struct timeval connecttime;
957   /* The two fields below get set in Curl_connecthost */
958   int num_addr; /* number of addresses to try to connect to */
959   long timeoutms_per_addr; /* how long time in milliseconds to spend on
960                               trying to connect to each IP address */
961
962   const struct Curl_handler *handler; /* Connection's protocol handler */
963   const struct Curl_handler *given;   /* The protocol first given */
964
965   long ip_version; /* copied from the SessionHandle at creation time */
966
967   /**** curl_get() phase fields */
968
969   curl_socket_t sockfd;   /* socket to read from or CURL_SOCKET_BAD */
970   curl_socket_t writesockfd; /* socket to write to, it may very
971                                 well be the same we read from.
972                                 CURL_SOCKET_BAD disables */
973
974   /** Dynamicly allocated strings, MUST be freed before this **/
975   /** struct is killed.                                      **/
976   struct dynamically_allocated_data {
977     char *proxyuserpwd;
978     char *uagent;
979     char *accept_encoding;
980     char *userpwd;
981     char *rangeline;
982     char *ref;
983     char *host;
984     char *cookiehost;
985     char *rtsp_transport;
986     char *te; /* TE: request header */
987   } allocptr;
988
989 #ifdef HAVE_GSSAPI
990   int sec_complete; /* if Kerberos is enabled for this connection */
991   enum protection_level command_prot;
992   enum protection_level data_prot;
993   enum protection_level request_data_prot;
994   size_t buffer_size;
995   struct krb5buffer in_buffer;
996   void *app_data;
997   const struct Curl_sec_client_mech *mech;
998   struct sockaddr_in local_addr;
999 #endif
1000
1001 #if defined(USE_KERBEROS5)    /* Consider moving some of the above GSS-API */
1002   struct kerberos5data krb5;  /* variables into the structure definition, */
1003 #endif                        /* however, some of them are ftp specific. */
1004
1005   /* the two following *_inuse fields are only flags, not counters in any way.
1006      If TRUE it means the channel is in use, and if FALSE it means the channel
1007      is up for grabs by one. */
1008
1009   bool readchannel_inuse;  /* whether the read channel is in use by an easy
1010                               handle */
1011   bool writechannel_inuse; /* whether the write channel is in use by an easy
1012                               handle */
1013   struct curl_llist *send_pipe; /* List of handles waiting to
1014                                    send on this pipeline */
1015   struct curl_llist *recv_pipe; /* List of handles waiting to read
1016                                    their responses on this pipeline */
1017   char* master_buffer; /* The master buffer allocated on-demand;
1018                           used for pipelining. */
1019   size_t read_pos; /* Current read position in the master buffer */
1020   size_t buf_len; /* Length of the buffer?? */
1021
1022
1023   curl_seek_callback seek_func; /* function that seeks the input */
1024   void *seek_client;            /* pointer to pass to the seek() above */
1025
1026   /*************** Request - specific items ************/
1027
1028   /* previously this was in the urldata struct */
1029   curl_read_callback fread_func; /* function that reads the input */
1030   void *fread_in;           /* pointer to pass to the fread() above */
1031
1032 #if defined(USE_NTLM)
1033   struct ntlmdata ntlm;     /* NTLM differs from other authentication schemes
1034                                because it authenticates connections, not
1035                                single requests! */
1036   struct ntlmdata proxyntlm; /* NTLM data for proxy */
1037
1038 #if defined(NTLM_WB_ENABLED)
1039   /* used for communication with Samba's winbind daemon helper ntlm_auth */
1040   curl_socket_t ntlm_auth_hlpr_socket;
1041   pid_t ntlm_auth_hlpr_pid;
1042   char* challenge_header;
1043   char* response_header;
1044 #endif
1045 #endif
1046
1047   char syserr_buf [256]; /* buffer for Curl_strerror() */
1048
1049 #ifdef CURLRES_ASYNCH
1050   /* data used for the asynch name resolve callback */
1051   struct Curl_async async;
1052 #endif
1053
1054   /* These three are used for chunked-encoding trailer support */
1055   char *trailer; /* allocated buffer to store trailer in */
1056   int trlMax;    /* allocated buffer size */
1057   int trlPos;    /* index of where to store data */
1058
1059   union {
1060     struct ftp_conn ftpc;
1061     struct http_conn httpc;
1062     struct ssh_conn sshc;
1063     struct tftp_state_data *tftpc;
1064     struct imap_conn imapc;
1065     struct pop3_conn pop3c;
1066     struct smtp_conn smtpc;
1067     struct rtsp_conn rtspc;
1068     struct smb_conn smbc;
1069     void *generic; /* RTMP and LDAP use this */
1070   } proto;
1071
1072   int cselect_bits; /* bitmask of socket events */
1073   int waitfor;      /* current READ/WRITE bits to wait for */
1074
1075 #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
1076   int socks5_gssapi_enctype;
1077 #endif
1078
1079   bool verifypeer;
1080   bool verifyhost;
1081
1082   /* When this connection is created, store the conditions for the local end
1083      bind. This is stored before the actual bind and before any connection is
1084      made and will serve the purpose of being used for comparison reasons so
1085      that subsequent bound-requested connections aren't accidentally re-using
1086      wrong connections. */
1087   char *localdev;
1088   unsigned short localport;
1089   int localportrange;
1090
1091   /* tunnel as in tunnel through a HTTP proxy with CONNECT */
1092   enum {
1093     TUNNEL_INIT,    /* init/default/no tunnel state */
1094     TUNNEL_CONNECT, /* CONNECT has been sent off */
1095     TUNNEL_COMPLETE /* CONNECT response received completely */
1096   } tunnel_state[2]; /* two separate ones to allow FTP */
1097   struct connectbundle *bundle; /* The bundle we are member of */
1098
1099   enum negotiatenpn negnpn;
1100 };
1101
1102 /* The end of connectdata. */
1103
1104 /*
1105  * Struct to keep statistical and informational data.
1106  */
1107 struct PureInfo {
1108   int httpcode;  /* Recent HTTP, FTP, or RTSP response code */
1109   int httpproxycode; /* response code from proxy when received separate */
1110   int httpversion; /* the http version number X.Y = X*10+Y */
1111   long filetime; /* If requested, this is might get set. Set to -1 if the time
1112                     was unretrievable. We cannot have this of type time_t,
1113                     since time_t is unsigned on several platforms such as
1114                     OpenVMS. */
1115   bool timecond;  /* set to TRUE if the time condition didn't match, which
1116                      thus made the document NOT get fetched */
1117   long header_size;  /* size of read header(s) in bytes */
1118   long request_size; /* the amount of bytes sent in the request(s) */
1119   unsigned long proxyauthavail; /* what proxy auth types were announced */
1120   unsigned long httpauthavail;  /* what host auth types were announced */
1121   long numconnects; /* how many new connection did libcurl created */
1122   char *contenttype; /* the content type of the object */
1123   char *wouldredirect; /* URL this would've been redirected to if asked to */
1124
1125   /* PureInfo members 'conn_primary_ip', 'conn_primary_port', 'conn_local_ip'
1126      and, 'conn_local_port' are copied over from the connectdata struct in
1127      order to allow curl_easy_getinfo() to return this information even when
1128      the session handle is no longer associated with a connection, and also
1129      allow curl_easy_reset() to clear this information from the session handle
1130      without disturbing information which is still alive, and that might be
1131      reused, in the connection cache. */
1132
1133   char conn_primary_ip[MAX_IPADR_LEN];
1134   long conn_primary_port;
1135
1136   char conn_local_ip[MAX_IPADR_LEN];
1137   long conn_local_port;
1138
1139   struct curl_certinfo certs; /* info about the certs, only populated in
1140                                  OpenSSL builds. Asked for with
1141                                  CURLOPT_CERTINFO / CURLINFO_CERTINFO */
1142 };
1143
1144
1145 struct Progress {
1146   long lastshow; /* time() of the last displayed progress meter or NULL to
1147                     force redraw at next call */
1148   curl_off_t size_dl; /* total expected size */
1149   curl_off_t size_ul; /* total expected size */
1150   curl_off_t downloaded; /* transferred so far */
1151   curl_off_t uploaded; /* transferred so far */
1152
1153   curl_off_t current_speed; /* uses the currently fastest transfer */
1154
1155   bool callback;  /* set when progress callback is used */
1156   int width; /* screen width at download start */
1157   int flags; /* see progress.h */
1158
1159   double timespent;
1160
1161   curl_off_t dlspeed;
1162   curl_off_t ulspeed;
1163
1164   double t_nslookup;
1165   double t_connect;
1166   double t_appconnect;
1167   double t_pretransfer;
1168   double t_starttransfer;
1169   double t_redirect;
1170
1171   struct timeval start;
1172   struct timeval t_startsingle;
1173   struct timeval t_startop;
1174   struct timeval t_acceptdata;
1175 #define CURR_TIME (5+1) /* 6 entries for 5 seconds */
1176
1177   curl_off_t speeder[ CURR_TIME ];
1178   struct timeval speeder_time[ CURR_TIME ];
1179   int speeder_c;
1180 };
1181
1182 typedef enum {
1183   HTTPREQ_NONE, /* first in list */
1184   HTTPREQ_GET,
1185   HTTPREQ_POST,
1186   HTTPREQ_POST_FORM, /* we make a difference internally */
1187   HTTPREQ_PUT,
1188   HTTPREQ_HEAD,
1189   HTTPREQ_CUSTOM,
1190   HTTPREQ_LAST /* last in list */
1191 } Curl_HttpReq;
1192
1193 typedef enum {
1194     RTSPREQ_NONE, /* first in list */
1195     RTSPREQ_OPTIONS,
1196     RTSPREQ_DESCRIBE,
1197     RTSPREQ_ANNOUNCE,
1198     RTSPREQ_SETUP,
1199     RTSPREQ_PLAY,
1200     RTSPREQ_PAUSE,
1201     RTSPREQ_TEARDOWN,
1202     RTSPREQ_GET_PARAMETER,
1203     RTSPREQ_SET_PARAMETER,
1204     RTSPREQ_RECORD,
1205     RTSPREQ_RECEIVE,
1206     RTSPREQ_LAST /* last in list */
1207 } Curl_RtspReq;
1208
1209 /*
1210  * Values that are generated, temporary or calculated internally for a
1211  * "session handle" must be defined within the 'struct UrlState'.  This struct
1212  * will be used within the SessionHandle struct. When the 'SessionHandle'
1213  * struct is cloned, this data MUST NOT be copied.
1214  *
1215  * Remember that any "state" information goes globally for the curl handle.
1216  * Session-data MUST be put in the connectdata struct and here.  */
1217 #define MAX_CURL_USER_LENGTH 256
1218 #define MAX_CURL_PASSWORD_LENGTH 256
1219
1220 struct auth {
1221   unsigned long want;  /* Bitmask set to the authentication methods wanted by
1222                           app (with CURLOPT_HTTPAUTH or CURLOPT_PROXYAUTH). */
1223   unsigned long picked;
1224   unsigned long avail; /* Bitmask for what the server reports to support for
1225                           this resource */
1226   bool done;  /* TRUE when the auth phase is done and ready to do the *actual*
1227                  request */
1228   bool multi; /* TRUE if this is not yet authenticated but within the auth
1229                  multipass negotiation */
1230   bool iestyle; /* TRUE if digest should be done IE-style or FALSE if it should
1231                    be RFC compliant */
1232 };
1233
1234 struct UrlState {
1235
1236   /* Points to the connection cache */
1237   struct conncache *conn_cache;
1238
1239   /* when curl_easy_perform() is called, the multi handle is "owned" by
1240      the easy handle so curl_easy_cleanup() on such an easy handle will
1241      also close the multi handle! */
1242   bool multi_owned_by_easy;
1243
1244   /* buffers to store authentication data in, as parsed from input options */
1245   struct timeval keeps_speed; /* for the progress meter really */
1246
1247   struct connectdata *lastconnect; /* The last connection, NULL if undefined */
1248
1249   char *headerbuff; /* allocated buffer to store headers in */
1250   size_t headersize;   /* size of the allocation */
1251
1252   char buffer[BUFSIZE+1]; /* download buffer */
1253   char uploadbuffer[BUFSIZE+1]; /* upload buffer */
1254   curl_off_t current_speed;  /* the ProgressShow() funcion sets this,
1255                                 bytes / second */
1256   bool this_is_a_follow; /* this is a followed Location: request */
1257
1258   char *first_host; /* if set, this should be the host name that we will
1259                        sent authorization to, no else. Used to make Location:
1260                        following not keep sending user+password... This is
1261                        strdup() data.
1262                     */
1263   struct curl_ssl_session *session; /* array of 'max_ssl_sessions' size */
1264   long sessionage;                  /* number of the most recent session */
1265   char *tempwrite;      /* allocated buffer to keep data in when a write
1266                            callback returns to make the connection paused */
1267   size_t tempwritesize; /* size of the 'tempwrite' allocated buffer */
1268   int tempwritetype;    /* type of the 'tempwrite' buffer as a bitmask that is
1269                            used with Curl_client_write() */
1270   char *scratch; /* huge buffer[BUFSIZE*2] when doing upload CRLF replacing */
1271   bool errorbuf; /* Set to TRUE if the error buffer is already filled in.
1272                     This must be set to FALSE every time _easy_perform() is
1273                     called. */
1274   int os_errno;  /* filled in with errno whenever an error occurs */
1275 #ifdef HAVE_SIGNAL
1276   /* storage for the previous bag^H^H^HSIGPIPE signal handler :-) */
1277   void (*prev_signal)(int sig);
1278 #endif
1279   bool allow_port; /* Is set.use_port allowed to take effect or not. This
1280                       is always set TRUE when curl_easy_perform() is called. */
1281   struct digestdata digest;      /* state data for host Digest auth */
1282   struct digestdata proxydigest; /* state data for proxy Digest auth */
1283
1284 #ifdef USE_SPNEGO
1285   struct negotiatedata negotiate; /* state data for host Negotiate auth */
1286   struct negotiatedata proxyneg; /* state data for proxy Negotiate auth */
1287 #endif
1288
1289   struct auth authhost;  /* auth details for host */
1290   struct auth authproxy; /* auth details for proxy */
1291
1292   bool authproblem; /* TRUE if there's some problem authenticating */
1293
1294   void *resolver; /* resolver state, if it is used in the URL state -
1295                      ares_channel f.e. */
1296
1297 #if defined(USE_SSLEAY) && defined(HAVE_OPENSSL_ENGINE_H)
1298   ENGINE *engine;
1299 #endif /* USE_SSLEAY */
1300   struct timeval expiretime; /* set this with Curl_expire() only */
1301   struct Curl_tree timenode; /* for the splay stuff */
1302   struct curl_llist *timeoutlist; /* list of pending timeouts */
1303
1304   /* a place to store the most recently set FTP entrypath */
1305   char *most_recent_ftp_entrypath;
1306
1307   /* set after initial USER failure, to prevent an authentication loop */
1308   bool ftp_trying_alternative;
1309
1310   int httpversion;       /* the lowest HTTP version*10 reported by any server
1311                             involved in this request */
1312   bool expect100header;  /* TRUE if we added Expect: 100-continue */
1313
1314   bool pipe_broke; /* TRUE if the connection we were pipelined on broke
1315                       and we need to restart from the beginning */
1316
1317 #if !defined(WIN32) && !defined(MSDOS) && !defined(__EMX__) && \
1318     !defined(__SYMBIAN32__)
1319 /* do FTP line-end conversions on most platforms */
1320 #define CURL_DO_LINEEND_CONV
1321   /* for FTP downloads: track CRLF sequences that span blocks */
1322   bool prev_block_had_trailing_cr;
1323   /* for FTP downloads: how many CRLFs did we converted to LFs? */
1324   curl_off_t crlf_conversions;
1325 #endif
1326   char *pathbuffer;/* allocated buffer to store the URL's path part in */
1327   char *path;      /* path to use, points to somewhere within the pathbuffer
1328                       area */
1329   bool slash_removed; /* set TRUE if the 'path' points to a path where the
1330                          initial URL slash separator has been taken off */
1331   bool use_range;
1332   bool rangestringalloc; /* the range string is malloc()'ed */
1333
1334   char *range; /* range, if used. See README for detailed specification on
1335                   this syntax. */
1336   curl_off_t resume_from; /* continue [ftp] transfer from here */
1337
1338   /* This RTSP state information survives requests and connections */
1339   long rtsp_next_client_CSeq; /* the session's next client CSeq */
1340   long rtsp_next_server_CSeq; /* the session's next server CSeq */
1341   long rtsp_CSeq_recv; /* most recent CSeq received */
1342
1343   curl_off_t infilesize; /* size of file to upload, -1 means unknown.
1344                             Copied from set.filesize at start of operation */
1345 };
1346
1347
1348 /*
1349  * This 'DynamicStatic' struct defines dynamic states that actually change
1350  * values in the 'UserDefined' area, which MUST be taken into consideration
1351  * if the UserDefined struct is cloned or similar. You can probably just
1352  * copy these, but each one indicate a special action on other data.
1353  */
1354
1355 struct DynamicStatic {
1356   char *url;        /* work URL, copied from UserDefined */
1357   bool url_alloc;   /* URL string is malloc()'ed */
1358   char *referer;    /* referer string */
1359   bool referer_alloc; /* referer sting is malloc()ed */
1360   struct curl_slist *cookielist; /* list of cookie files set by
1361                                     curl_easy_setopt(COOKIEFILE) calls */
1362   struct curl_slist *resolve; /* set to point to the set.resolve list when
1363                                  this should be dealt with in pretransfer */
1364 };
1365
1366 /*
1367  * This 'UserDefined' struct must only contain data that is set once to go
1368  * for many (perhaps) independent connections. Values that are generated or
1369  * calculated internally for the "session handle" MUST be defined within the
1370  * 'struct UrlState' instead. The only exceptions MUST note the changes in
1371  * the 'DynamicStatic' struct.
1372  * Character pointer fields point to dynamic storage, unless otherwise stated.
1373  */
1374
1375 struct Curl_multi;    /* declared and used only in multi.c */
1376
1377 enum dupstring {
1378   STRING_CERT,            /* client certificate file name */
1379   STRING_CERT_TYPE,       /* format for certificate (default: PEM)*/
1380   STRING_COOKIE,          /* HTTP cookie string to send */
1381   STRING_COOKIEJAR,       /* dump all cookies to this file */
1382   STRING_CUSTOMREQUEST,   /* HTTP/FTP/RTSP request/method to use */
1383   STRING_DEVICE,          /* local network interface/address to use */
1384   STRING_ENCODING,        /* Accept-Encoding string */
1385   STRING_FTP_ACCOUNT,     /* ftp account data */
1386   STRING_FTP_ALTERNATIVE_TO_USER, /* command to send if USER/PASS fails */
1387   STRING_FTPPORT,         /* port to send with the FTP PORT command */
1388   STRING_KEY,             /* private key file name */
1389   STRING_KEY_PASSWD,      /* plain text private key password */
1390   STRING_KEY_TYPE,        /* format for private key (default: PEM) */
1391   STRING_KRB_LEVEL,       /* krb security level */
1392   STRING_NETRC_FILE,      /* if not NULL, use this instead of trying to find
1393                              $HOME/.netrc */
1394   STRING_PROXY,           /* proxy to use */
1395   STRING_SET_RANGE,       /* range, if used */
1396   STRING_SET_REFERER,     /* custom string for the HTTP referer field */
1397   STRING_SET_URL,         /* what original URL to work on */
1398   STRING_SSL_CAPATH,      /* CA directory name (doesn't work on windows) */
1399   STRING_SSL_CAFILE,      /* certificate file to verify peer against */
1400   STRING_SSL_PINNEDPUBLICKEY, /* public key file to verify peer against */
1401   STRING_SSL_CIPHER_LIST, /* list of ciphers to use */
1402   STRING_SSL_EGDSOCKET,   /* path to file containing the EGD daemon socket */
1403   STRING_SSL_RANDOM_FILE, /* path to file containing "random" data */
1404   STRING_USERAGENT,       /* User-Agent string */
1405   STRING_SSL_CRLFILE,     /* crl file to check certificate */
1406   STRING_SSL_ISSUERCERT,  /* issuer cert file to check certificate */
1407   STRING_USERNAME,        /* <username>, if used */
1408   STRING_PASSWORD,        /* <password>, if used */
1409   STRING_OPTIONS,         /* <options>, if used */
1410   STRING_PROXYUSERNAME,   /* Proxy <username>, if used */
1411   STRING_PROXYPASSWORD,   /* Proxy <password>, if used */
1412   STRING_NOPROXY,         /* List of hosts which should not use the proxy, if
1413                              used */
1414   STRING_RTSP_SESSION_ID, /* Session ID to use */
1415   STRING_RTSP_STREAM_URI, /* Stream URI for this request */
1416   STRING_RTSP_TRANSPORT,  /* Transport for this session */
1417 #ifdef USE_LIBSSH2
1418   STRING_SSH_PRIVATE_KEY, /* path to the private key file for auth */
1419   STRING_SSH_PUBLIC_KEY,  /* path to the public key file for auth */
1420   STRING_SSH_HOST_PUBLIC_KEY_MD5, /* md5 of host public key in ascii hex */
1421   STRING_SSH_KNOWNHOSTS,  /* file name of knownhosts file */
1422 #endif
1423 #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
1424   STRING_SOCKS5_GSSAPI_SERVICE, /* GSSAPI service name */
1425 #endif
1426   STRING_MAIL_FROM,
1427   STRING_MAIL_AUTH,
1428
1429 #ifdef USE_TLS_SRP
1430   STRING_TLSAUTH_USERNAME,      /* TLS auth <username> */
1431   STRING_TLSAUTH_PASSWORD,      /* TLS auth <password> */
1432 #endif
1433   STRING_BEARER,                /* <bearer>, if used */
1434 #ifdef USE_UNIX_SOCKETS
1435   STRING_UNIX_SOCKET_PATH,      /* path to Unix socket, if used */
1436 #endif
1437
1438   /* -- end of zero-terminated strings -- */
1439
1440   STRING_LASTZEROTERMINATED,
1441
1442   /* -- below this are pointers to binary data that cannot be strdup'ed.
1443      Each such pointer must be added manually to Curl_dupset() --- */
1444
1445   STRING_COPYPOSTFIELDS,  /* if POST, set the fields' values here */
1446
1447   STRING_LAST /* not used, just an end-of-list marker */
1448 };
1449
1450 struct UserDefined {
1451   FILE *err;         /* the stderr user data goes here */
1452   void *debugdata;   /* the data that will be passed to fdebug */
1453   char *errorbuffer; /* (Static) store failure messages in here */
1454   long proxyport; /* If non-zero, use this port number by default. If the
1455                      proxy string features a ":[port]" that one will override
1456                      this. */
1457   void *out;         /* the fetched file goes here */
1458   void *in;          /* the uploaded file is read from here */
1459   void *writeheader; /* write the header to this if non-NULL */
1460   void *rtp_out;     /* write RTP to this if non-NULL */
1461   long use_port;     /* which port to use (when not using default) */
1462   unsigned long httpauth;  /* kind of HTTP authentication to use (bitmask) */
1463   unsigned long proxyauth; /* kind of proxy authentication to use (bitmask) */
1464   long followlocation; /* as in HTTP Location: */
1465   long maxredirs;    /* maximum no. of http(s) redirects to follow, set to -1
1466                         for infinity */
1467
1468   int keep_post;     /* keep POSTs as POSTs after a 30x request; each
1469                         bit represents a request, from 301 to 303 */
1470   bool free_referer; /* set TRUE if 'referer' points to a string we
1471                         allocated */
1472   void *postfields;  /* if POST, set the fields' values here */
1473   curl_seek_callback seek_func;      /* function that seeks the input */
1474   curl_off_t postfieldsize; /* if POST, this might have a size to use instead
1475                                of strlen(), and then the data *may* be binary
1476                                (contain zero bytes) */
1477   unsigned short localport; /* local port number to bind to */
1478   int localportrange; /* number of additional port numbers to test in case the
1479                          'localport' one can't be bind()ed */
1480   curl_write_callback fwrite_func;   /* function that stores the output */
1481   curl_write_callback fwrite_header; /* function that stores headers */
1482   curl_write_callback fwrite_rtp;    /* function that stores interleaved RTP */
1483   curl_read_callback fread_func;     /* function that reads the input */
1484   int is_fread_set; /* boolean, has read callback been set to non-NULL? */
1485   int is_fwrite_set; /* boolean, has write callback been set to non-NULL? */
1486   curl_progress_callback fprogress; /* OLD and deprecated progress callback  */
1487   curl_xferinfo_callback fxferinfo; /* progress callback */
1488   curl_debug_callback fdebug;      /* function that write informational data */
1489   curl_ioctl_callback ioctl_func;  /* function for I/O control */
1490   curl_sockopt_callback fsockopt;  /* function for setting socket options */
1491   void *sockopt_client; /* pointer to pass to the socket options callback */
1492   curl_opensocket_callback fopensocket; /* function for checking/translating
1493                                            the address and opening the
1494                                            socket */
1495   void* opensocket_client;
1496   curl_closesocket_callback fclosesocket; /* function for closing the
1497                                              socket */
1498   void* closesocket_client;
1499
1500   void *seek_client;    /* pointer to pass to the seek callback */
1501   /* the 3 curl_conv_callback functions below are used on non-ASCII hosts */
1502   /* function to convert from the network encoding: */
1503   curl_conv_callback convfromnetwork;
1504   /* function to convert to the network encoding: */
1505   curl_conv_callback convtonetwork;
1506   /* function to convert from UTF-8 encoding: */
1507   curl_conv_callback convfromutf8;
1508
1509   void *progress_client; /* pointer to pass to the progress callback */
1510   void *ioctl_client;   /* pointer to pass to the ioctl callback */
1511   long timeout;         /* in milliseconds, 0 means no timeout */
1512   long connecttimeout;  /* in milliseconds, 0 means no timeout */
1513   long accepttimeout;   /* in milliseconds, 0 means no timeout */
1514   long server_response_timeout; /* in milliseconds, 0 means no timeout */
1515   long tftp_blksize ; /* in bytes, 0 means use default */
1516   curl_off_t filesize;  /* size of file to upload, -1 means unknown */
1517   long low_speed_limit; /* bytes/second */
1518   long low_speed_time;  /* number of seconds */
1519   curl_off_t max_send_speed; /* high speed limit in bytes/second for upload */
1520   curl_off_t max_recv_speed; /* high speed limit in bytes/second for
1521                                 download */
1522   curl_off_t set_resume_from;  /* continue [ftp] transfer from here */
1523   struct curl_slist *headers; /* linked list of extra headers */
1524   struct curl_slist *proxyheaders; /* linked list of extra CONNECT headers */
1525   struct curl_httppost *httppost;  /* linked list of POST data */
1526   bool sep_headers;     /* handle host and proxy headers separately */
1527   bool cookiesession;   /* new cookie session? */
1528   bool crlf;            /* convert crlf on ftp upload(?) */
1529   struct curl_slist *quote;     /* after connection is established */
1530   struct curl_slist *postquote; /* after the transfer */
1531   struct curl_slist *prequote; /* before the transfer, after type */
1532   struct curl_slist *source_quote;  /* 3rd party quote */
1533   struct curl_slist *source_prequote;  /* in 3rd party transfer mode - before
1534                                           the transfer on source host */
1535   struct curl_slist *source_postquote; /* in 3rd party transfer mode - after
1536                                           the transfer on source host */
1537   struct curl_slist *telnet_options; /* linked list of telnet options */
1538   struct curl_slist *resolve;     /* list of names to add/remove from
1539                                      DNS cache */
1540   curl_TimeCond timecondition; /* kind of time/date comparison */
1541   time_t timevalue;       /* what time to compare with */
1542   Curl_HttpReq httpreq;   /* what kind of HTTP request (if any) is this */
1543   long httpversion; /* when non-zero, a specific HTTP version requested to
1544                        be used in the library's request(s) */
1545   struct ssl_config_data ssl;  /* user defined SSL stuff */
1546   curl_proxytype proxytype; /* what kind of proxy that is in use */
1547   long dns_cache_timeout; /* DNS cache timeout */
1548   long buffer_size;      /* size of receive buffer to use */
1549   void *private_data; /* application-private data */
1550
1551   struct curl_slist *http200aliases; /* linked list of aliases for http200 */
1552
1553   long ipver; /* the CURL_IPRESOLVE_* defines in the public header file
1554                  0 - whatever, 1 - v2, 2 - v6 */
1555
1556   curl_off_t max_filesize; /* Maximum file size to download */
1557
1558   curl_ftpfile ftp_filemethod; /* how to get to a file when FTP is used  */
1559
1560   int ftp_create_missing_dirs; /* 1 - create directories that don't exist
1561                                   2 - the same but also allow MKD to fail once
1562                                */
1563
1564   curl_sshkeycallback ssh_keyfunc; /* key matching callback */
1565   void *ssh_keyfunc_userp;         /* custom pointer to callback */
1566
1567 /* Here follows boolean settings that define how to behave during
1568    this session. They are STATIC, set by libcurl users or at least initially
1569    and they don't change during operations. */
1570
1571   bool printhost;        /* printing host name in debug info */
1572   bool get_filetime;     /* get the time and get of the remote file */
1573   bool tunnel_thru_httpproxy; /* use CONNECT through a HTTP proxy */
1574   bool prefer_ascii;     /* ASCII rather than binary */
1575   bool ftp_append;       /* append, not overwrite, on upload */
1576   bool ftp_list_only;    /* switch FTP command for listing directories */
1577   bool ftp_use_port;     /* use the FTP PORT command */
1578   bool hide_progress;    /* don't use the progress meter */
1579   bool http_fail_on_error;  /* fail on HTTP error codes >= 400 */
1580   bool http_follow_location; /* follow HTTP redirects */
1581   bool http_transfer_encoding; /* request compressed HTTP transfer-encoding */
1582   bool http_disable_hostname_check_before_authentication;
1583   bool include_header;   /* include received protocol headers in data output */
1584   bool http_set_referer; /* is a custom referer used */
1585   bool http_auto_referer; /* set "correct" referer when following location: */
1586   bool opt_no_body;      /* as set with CURLOPT_NOBODY */
1587   bool set_port;         /* custom port number used */
1588   bool upload;           /* upload request */
1589   enum CURL_NETRC_OPTION
1590        use_netrc;        /* defined in include/curl.h */
1591   bool verbose;          /* output verbosity */
1592   bool krb;              /* Kerberos connection requested */
1593   bool reuse_forbid;     /* forbidden to be reused, close after use */
1594   bool reuse_fresh;      /* do not re-use an existing connection  */
1595   bool ftp_use_epsv;     /* if EPSV is to be attempted or not */
1596   bool ftp_use_eprt;     /* if EPRT is to be attempted or not */
1597   bool ftp_use_pret;     /* if PRET is to be used before PASV or not */
1598
1599   curl_usessl use_ssl;   /* if AUTH TLS is to be attempted etc, for FTP or
1600                             IMAP or POP3 or others! */
1601   curl_ftpauth ftpsslauth; /* what AUTH XXX to be attempted */
1602   curl_ftpccc ftp_ccc;   /* FTP CCC options */
1603   bool no_signal;        /* do not use any signal/alarm handler */
1604   bool global_dns_cache; /* subject for future removal */
1605   bool tcp_nodelay;      /* whether to enable TCP_NODELAY or not */
1606   bool ignorecl;         /* ignore content length */
1607   bool ftp_skip_ip;      /* skip the IP address the FTP server passes on to
1608                             us */
1609   bool connect_only;     /* make connection, let application use the socket */
1610   bool ssl_enable_beast; /* especially allow this flaw for interoperability's
1611                             sake*/
1612   long ssh_auth_types;   /* allowed SSH auth types */
1613   bool http_te_skip;     /* pass the raw body data to the user, even when
1614                             transfer-encoded (chunked, compressed) */
1615   bool http_ce_skip;     /* pass the raw body data to the user, even when
1616                             content-encoded (chunked, compressed) */
1617   long new_file_perms;    /* Permissions to use when creating remote files */
1618   long new_directory_perms; /* Permissions to use when creating remote dirs */
1619   bool proxy_transfer_mode; /* set transfer mode (;type=<a|i>) when doing FTP
1620                                via an HTTP proxy */
1621   char *str[STRING_LAST]; /* array of strings, pointing to allocated memory */
1622   unsigned int scope_id;  /* Scope id for IPv6 */
1623   long allowed_protocols;
1624   long redir_protocols;
1625 #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
1626   long socks5_gssapi_nec; /* flag to support nec socks5 server */
1627 #endif
1628   struct curl_slist *mail_rcpt; /* linked list of mail recipients */
1629   bool sasl_ir;         /* Enable/disable SASL initial response */
1630   /* Common RTSP header options */
1631   Curl_RtspReq rtspreq; /* RTSP request type */
1632   long rtspversion; /* like httpversion, for RTSP */
1633   bool wildcardmatch; /* enable wildcard matching */
1634   curl_chunk_bgn_callback chunk_bgn; /* called before part of transfer
1635                                         starts */
1636   curl_chunk_end_callback chunk_end; /* called after part transferring
1637                                         stopped */
1638   curl_fnmatch_callback fnmatch; /* callback to decide which file corresponds
1639                                     to pattern (e.g. if WILDCARDMATCH is on) */
1640   void *fnmatch_data;
1641
1642   long gssapi_delegation; /* GSS-API credential delegation, see the
1643                              documentation of CURLOPT_GSSAPI_DELEGATION */
1644
1645   bool tcp_keepalive;    /* use TCP keepalives */
1646   long tcp_keepidle;     /* seconds in idle before sending keepalive probe */
1647   long tcp_keepintvl;    /* seconds between TCP keepalive probes */
1648
1649   size_t maxconnects;  /* Max idle connections in the connection cache */
1650
1651   bool ssl_enable_npn;  /* TLS NPN extension? */
1652   bool ssl_enable_alpn; /* TLS ALPN extension? */
1653
1654   long expect_100_timeout; /* in milliseconds */
1655 };
1656
1657 struct Names {
1658   struct curl_hash *hostcache;
1659   enum {
1660     HCACHE_NONE,    /* not pointing to anything */
1661     HCACHE_GLOBAL,  /* points to the (shrug) global one */
1662     HCACHE_MULTI,   /* points to a shared one in the multi handle */
1663     HCACHE_SHARED   /* points to a shared one in a shared object */
1664   } hostcachetype;
1665 };
1666
1667 /*
1668  * The 'connectdata' struct MUST have all the connection oriented stuff as we
1669  * may have several simultaneous connections and connection structs in memory.
1670  *
1671  * The 'struct UserDefined' must only contain data that is set once to go for
1672  * many (perhaps) independent connections. Values that are generated or
1673  * calculated internally for the "session handle" must be defined within the
1674  * 'struct UrlState' instead.
1675  */
1676
1677 struct SessionHandle {
1678   /* first, two fields for the linked list of these */
1679   struct SessionHandle *next;
1680   struct SessionHandle *prev;
1681
1682   struct connectdata *easy_conn;     /* the "unit's" connection */
1683
1684   CURLMstate mstate;  /* the handle's state */
1685   CURLcode result;   /* previous result */
1686
1687   struct Curl_message msg; /* A single posted message. */
1688
1689   /* Array with the plain socket numbers this handle takes care of, in no
1690      particular order. Note that all sockets are added to the sockhash, where
1691      the state etc are also kept. This array is mostly used to detect when a
1692      socket is to be removed from the hash. See singlesocket(). */
1693   curl_socket_t sockets[MAX_SOCKSPEREASYHANDLE];
1694   int numsocks;
1695
1696   struct Names dns;
1697   struct Curl_multi *multi;    /* if non-NULL, points to the multi handle
1698                                   struct to which this "belongs" when used by
1699                                   the multi interface */
1700   struct Curl_multi *multi_easy; /* if non-NULL, points to the multi handle
1701                                     struct to which this "belongs" when used
1702                                     by the easy interface */
1703   struct Curl_share *share;    /* Share, handles global variable mutexing */
1704   struct SingleRequest req;    /* Request-specific data */
1705   struct UserDefined set;      /* values set by the libcurl user */
1706   struct DynamicStatic change; /* possibly modified userdefined data */
1707   struct CookieInfo *cookies;  /* the cookies, read from files and servers.
1708                                   NOTE that the 'cookie' field in the
1709                                   UserDefined struct defines if the "engine"
1710                                   is to be used or not. */
1711   struct Progress progress;    /* for all the progress meter data */
1712   struct UrlState state;       /* struct for fields used for state info and
1713                                   other dynamic purposes */
1714   struct WildcardData wildcard; /* wildcard download state info */
1715   struct PureInfo info;        /* stats, reports and info data */
1716   struct curl_tlssessioninfo tsi; /* Information about the TLS session, only
1717                                      valid after a client has asked for it */
1718 #if defined(CURL_DOES_CONVERSIONS) && defined(HAVE_ICONV)
1719   iconv_t outbound_cd;         /* for translating to the network encoding */
1720   iconv_t inbound_cd;          /* for translating from the network encoding */
1721   iconv_t utf8_cd;             /* for translating to UTF8 */
1722 #endif /* CURL_DOES_CONVERSIONS && HAVE_ICONV */
1723   unsigned int magic;          /* set to a CURLEASY_MAGIC_NUMBER */
1724 };
1725
1726 #define LIBCURL_NAME "libcurl"
1727
1728 #endif /* HEADER_CURL_URLDATA_H */