• Home
  • Raw
  • Download

Lines Matching defs:Curl_easy

1861 struct Curl_easy {  struct
1863 struct Curl_easy *next; argument
1864 struct Curl_easy *prev; argument
1866 struct connectdata *conn;
1867 struct Curl_llist_element connect_queue;
1868 struct Curl_llist_element conn_queue; /* list per connectdata */
1870 CURLMstate mstate; /* the handle's state */
1871 CURLcode result; /* previous result */
1873 struct Curl_message msg; /* A single posted message. */
1879 curl_socket_t sockets[MAX_SOCKSPEREASYHANDLE];
1880 int actions[MAX_SOCKSPEREASYHANDLE]; /* action for each socket in
1882 int numsocks;
1884 struct Names dns;
1885 struct Curl_multi *multi; /* if non-NULL, points to the multi handle
1888 struct Curl_multi *multi_easy; /* if non-NULL, points to the multi handle
1891 struct Curl_share *share; /* Share, handles global variable mutexing */
1893 struct PslCache *psl; /* The associated PSL cache. */
1895 struct SingleRequest req; /* Request-specific data */
1896 struct UserDefined set; /* values set by the libcurl user */
1897 struct DynamicStatic change; /* possibly modified userdefined data */
1898 struct CookieInfo *cookies; /* the cookies, read from files and servers.
1903 struct altsvcinfo *asi; /* the alt-svc cache */
1905 struct Progress progress; /* for all the progress meter data */
1906 struct UrlState state; /* struct for fields used for state info and
1909 struct WildcardData wildcard; /* wildcard download state info */
1911 struct PureInfo info; /* stats, reports and info data */
1912 struct curl_tlssessioninfo tsi; /* Information about the TLS session, only
1915 iconv_t outbound_cd; /* for translating to the network encoding */
1916 iconv_t inbound_cd; /* for translating from the network encoding */
1917 iconv_t utf8_cd; /* for translating to UTF8 */
1919 unsigned int magic; /* set to a CURLEASY_MAGIC_NUMBER */