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;
81 char *content_type;
84 int willclose;
85 int seekable; /**< Control seekability, 0 = disable, 1 = enable, -1 = probe. */
86 int chunked_post;
88 int end_chunked_post;
90 int end_header;
92 int multiple_requests;
93 uint8_t *post_data;
94 int post_datalen;
95 int is_akamai;
96 int is_mediagateway;
97 …holds newline (\n) delimited Set-Cookie header field values (without the "Set-Cookie: " field name)
99 AVDictionary *cookie_dict;
100 int icy;
102 uint64_t icy_data_read;
104 uint64_t icy_metaint;
105 char *icy_metadata_headers;
129 } HTTPContext; argument