Home
last modified time | relevance | path

Searched refs:http_version (Results 1 – 23 of 23) sorted by relevance

/third_party/boost/libs/asio/example/cpp03/iostreams/
Dhttp_client.cpp59 std::string http_version; in main() local
60 s >> http_version; in main()
65 if (!s || http_version.substr(0, 5) != "HTTP/") in main()
/third_party/boost/doc/html/boost_asio/example/cpp03/iostreams/
Dhttp_client.cpp59 std::string http_version; in main() local
60 s >> http_version; in main()
65 if (!s || http_version.substr(0, 5) != "HTTP/") in main()
/third_party/boost/libs/asio/example/cpp11/iostreams/
Dhttp_client.cpp59 std::string http_version; in main() local
60 s >> http_version; in main()
65 if (!s || http_version.substr(0, 5) != "HTTP/") in main()
/third_party/boost/libs/asio/example/cpp03/http/client/
Dsync_client.cpp62 std::string http_version; in main() local
63 response_stream >> http_version; in main()
68 if (!response_stream || http_version.substr(0, 5) != "HTTP/") in main()
Dasync_client.cpp101 std::string http_version; in handle_read_status_line() local
102 response_stream >> http_version; in handle_read_status_line()
107 if (!response_stream || http_version.substr(0, 5) != "HTTP/") in handle_read_status_line()
/third_party/boost/doc/html/boost_asio/example/cpp03/http/client/
Dsync_client.cpp62 std::string http_version; in main() local
63 response_stream >> http_version; in main()
68 if (!response_stream || http_version.substr(0, 5) != "HTTP/") in main()
Dasync_client.cpp101 std::string http_version; in handle_read_status_line() local
102 response_stream >> http_version; in handle_read_status_line()
107 if (!response_stream || http_version.substr(0, 5) != "HTTP/") in handle_read_status_line()
/third_party/curl/tests/data/
Dtest143929 Check if %{http_version} returns 1.1
32 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --write-out '%{http_version}'
Dtest97062 …t%TESTNUMBER","ftp_entry_path":null,"http_code":200,"http_connect":0,"http_version":"1.1","local_i…
/third_party/curl/src/
Dtool_writeout.c48 static const char *http_version[] = { variable
170 (version < (long)(sizeof(http_version)/sizeof(http_version[0])))) { in writeString()
171 strinfo = http_version[version]; in writeString()
/third_party/curl/lib/
Dc-hyper.c236 int http_version, in status_line() argument
243 vstr = http_version == HYPER_HTTP_VERSION_1_1 ? "1.1" : in status_line()
244 (http_version == HYPER_HTTP_VERSION_2 ? "2" : "1.0"); in status_line()
246 http_version == HYPER_HTTP_VERSION_1_1 ? 11 : in status_line()
247 (http_version == HYPER_HTTP_VERSION_2 ? 20 : 10); in status_line()
299 int http_version; in Curl_hyper_stream() local
385 http_version = hyper_response_version(resp); in Curl_hyper_stream()
390 http_status, http_version, reasonp, reason_len); in Curl_hyper_stream()
/third_party/libwebsockets/lib/roles/http/
Dprivate-lib-roles-http.h39 enum http_version { enum
258 enum http_version request_version;
/third_party/libsoup/libsoup/
Dsoup-message.c158 priv->http_version = priv->orig_http_version = SOUP_HTTP_1_1; in soup_message_init()
289 g_value_set_enum (value, priv->http_version); in soup_message_get_property()
1465 priv->http_version = priv->orig_http_version; in soup_message_cleanup_response()
1590 priv->http_version = version; in soup_message_set_http_version()
1614 return priv->http_version; in soup_message_get_http_version()
1640 if (priv->http_version == SOUP_HTTP_1_0) { in soup_message_is_keepalive()
Dsoup-message-private.h28 SoupHTTPVersion http_version, orig_http_version; member
/third_party/python/Lib/wsgiref/
Dhandlers.py104 http_version = "1.0" # Version that should be used for response variable in BaseHandler
266 … 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/
Dconnection.c1395 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/lwip/src/apps/http/
Dhttp_client.c207 http_parse_response_status(struct pbuf *p, u16_t *http_version, u16_t *http_status, u16_t *http_sta… in http_parse_response_status() argument
222 *http_version = version; in http_parse_response_status()
/third_party/python/Lib/test/
Dtest_wsgiref.py743 h.http_version = version
750 h.http_version = version
/third_party/ffmpeg/libavformat/
Dhttp.c78 char *http_version; member
151 …{ "http_version", "export the http response version", OFFSET(http_version), AV_OPT_TYPE_STRING, { …
979 av_freep(&s->http_version); in process_line()
980 s->http_version = av_strndup(p, 3); in process_line()
/third_party/python/Doc/library/
Dwsgiref.rst734 .. attribute:: BaseHandler.http_version
/third_party/libwebsockets/lib/roles/http/server/
Dserver.c1380 enum http_version request_version; in lws_http_action()
/third_party/ffmpeg/doc/
Dprotocols.texi398 @item http_version
/third_party/libsoup/
DChangeLog.pre-git1552 set http_version to 1.0 when returning a redirect, but require it
4858 message's http_version so the keep-alive handling is correct.