Searched refs:http_version (Results 1 - 9 of 9) sorted by relevance
/third_party/curl/lib/ |
H A D | c-hyper.c | 263 int http_version, in status_line() 270 vstr = http_version == HYPER_HTTP_VERSION_1_1 ? "1.1" : in status_line() 271 (http_version == HYPER_HTTP_VERSION_2 ? "2" : "1.0"); in status_line() 282 http_version == HYPER_HTTP_VERSION_1_1 ? 11 : in status_line() 283 (http_version == HYPER_HTTP_VERSION_2 ? 20 : 10); in status_line() 284 if(http_version == HYPER_HTTP_VERSION_1_0) in status_line() 343 int http_version; in Curl_hyper_stream() local 461 http_version = hyper_response_version(resp); in Curl_hyper_stream() 473 http_status, http_version, reasonp, reason_len); in Curl_hyper_stream() 825 int http_version; in http1xx_cb() local 260 status_line(struct Curl_easy *data, struct connectdata *conn, uint16_t http_status, int http_version, const uint8_t *reason, size_t rlen) status_line() argument [all...] |
/third_party/libwebsockets/lib/roles/http/ |
H A D | private-lib-roles-http.h | 39 enum http_version { enum 263 enum http_version request_version;
|
/third_party/python/Lib/wsgiref/ |
H A D | handlers.py | 104 http_version = "1.0" # Version that should be used for response variable in BaseHandler 265 self._write(('HTTP/%s %s\r\n' % (self.http_version,self.status)).encode('iso-8859-1'))
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
H A D | connection.c | 1395 char *http_version; local 1405 http_version = strchr (uri, ' '); 1406 if (NULL != http_version) 1408 http_version[0] = '\0'; 1409 http_version++; 1427 if (NULL == http_version) 1430 connection->version = http_version;
|
/third_party/curl/src/ |
H A D | tool_writeout.c | 56 static const struct httpmap http_version[] = { variable 67 http_version uses CURLINFO_HTTP_VERSION which returns the version as a long, 70 Yes: "http_version": "1.1" 71 No: "http_version": 1.1 86 {"http_version", VAR_HTTP_VERSION, CURLINFO_HTTP_VERSION, writeString}, 287 const struct httpmap *m = &http_version[0]; in writeString()
|
/third_party/lwip/src/apps/http/ |
H A D | http_client.c | 207 http_parse_response_status(struct pbuf *p, u16_t *http_version, u16_t *http_status, u16_t *http_status_str_offset) in http_parse_response_status() argument 222 *http_version = version; in http_parse_response_status()
|
/third_party/python/Lib/test/ |
H A D | test_wsgiref.py | 720 h.http_version = version 727 h.http_version = version
|
/third_party/ffmpeg/libavformat/ |
H A D | http.c | 83 char *http_version; member 157 { "http_version", "export the http response version", OFFSET(http_version), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY }, 1151 av_freep(&s->http_version); in process_line() 1152 s->http_version = av_strndup(p, 3); in process_line()
|
/third_party/libwebsockets/lib/roles/http/server/ |
H A D | server.c | 1602 enum http_version request_version; in lws_http_action() 1676 /* http_version? Default to 1.0, override with token: */ in lws_http_action()
|
Completed in 16 milliseconds