~ubuntu-branches/ubuntu/trusty/curl/trusty

« back to all changes in this revision

Viewing changes to lib/urldata.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2013-12-20 09:13:22 UTC
  • mfrom: (3.4.44 sid)
  • Revision ID: package-import@ubuntu.com-20131220091322-lqk9xf5wba7vsyfh
Tags: 7.34.0-1ubuntu1
* Resynchronize on Debian, 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.
* Dropped undocumented Build-Depends change to automake1.9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
838
838
     within the DNS cache, so this pointer is only valid as long as the DNS
839
839
     cache entry remains locked. It gets unlocked in Curl_done() */
840
840
  Curl_addrinfo *ip_addr;
 
841
  Curl_addrinfo *tempaddr[2]; /* for happy eyeballs */
841
842
 
842
843
  /* 'ip_addr_str' is the ip_addr data as a human readable string.
843
844
     It remains available as long as the connection does, which is longer than
889
890
  struct timeval created; /* creation time */
890
891
  curl_socket_t sock[2]; /* two sockets, the second is used for the data
891
892
                            transfer when doing FTP */
 
893
  curl_socket_t tempsock[2]; /* temporary sockets for happy eyeballs */
892
894
  bool sock_accepted[2]; /* TRUE if the socket on this index was created with
893
895
                            accept() */
894
896
  Curl_recv *recv[2];
1635
1637
                                  other dynamic purposes */
1636
1638
  struct WildcardData wildcard; /* wildcard download state info */
1637
1639
  struct PureInfo info;        /* stats, reports and info data */
 
1640
  struct curl_tlssessioninfo tsi; /* Information about the TLS session, only
 
1641
                                     valid after a client has asked for it */
1638
1642
#if defined(CURL_DOES_CONVERSIONS) && defined(HAVE_ICONV)
1639
1643
  iconv_t outbound_cd;         /* for translating to the network encoding */
1640
1644
  iconv_t inbound_cd;          /* for translating from the network encoding */