Lines Matching defs:HTTPContext
62 typedef struct HTTPContext { struct
63 const AVClass *class;
64 URLContext *hd;
65 unsigned char buffer[BUFFER_SIZE], *buf_ptr, *buf_end;
66 int line_count;
67 int http_code;
69 uint64_t chunksize;
70 int chunkend;
71 uint64_t off, end_off, filesize;
72 char *location;
73 HTTPAuthState auth_state;
74 HTTPAuthState proxy_auth_state;
75 char *http_proxy;
76 char *headers;
77 char *mime_type;
78 char *http_version;
79 char *user_agent;
80 char *referer;
82 char *user_agent_deprecated;
84 char *content_type;
87 int willclose;
88 int seekable; /**< Control seekability, 0 = disable, 1 = enable, -1 = probe. */
89 int chunked_post;
91 int end_chunked_post;
93 int end_header;
95 int multiple_requests;
96 uint8_t *post_data;
97 int post_datalen;
98 int is_akamai;
99 int is_mediagateway;
100 …holds newline (\n) delimited Set-Cookie header field values (without the "Set-Cookie: " field name)
102 AVDictionary *cookie_dict;
103 int icy;
105 uint64_t icy_data_read;
130 } HTTPContext; argument