| /external/curl/docs/ |
| D | FEATURES.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 7 # Features -- what curl can do 11 - config file support 12 - multiple URLs in a single command line 13 - range "globbing" support: [0-13], {one,two,three} 14 - multiple file upload on a single command line 15 - custom maximum transfer rate 16 - redirect stderr [all …]
|
| D | curl.1 | 8 .\" * Copyright (C) 1998 \- 2021, Daniel Stenberg, <daniel@haxx.se>, et al. 27 curl \- transfer a URL 37 curl offers a busload of useful tricks like proxy support, user 42 curl is powered by libcurl for all transfer-related features. See 45 The URL syntax is protocol-dependent. You find a detailed description in 55 "ftp://ftp.example.com/file[1-100].txt" 57 "ftp://ftp.example.com/file[001-100].txt" (with leading zeros) 59 "ftp://ftp.example.com/file[a-z].txt" 64 "http://example.com/archive[1996-1999]/vol[1-4]/part{a,b,c}.html" 73 "http://example.com/file[1-100:10].txt" [all …]
|
| D | MANUAL.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 11 Get the main page from a web-server: 45 curl --ftp-ssl ftp://files.are.example.com/secrets.txt 49 curl -u username sftp://example.com/etc/issue 52 password-protected) to authenticate: 54 curl -u username: --key ~/.ssh/id_rsa scp://example.com/~/file.txt 57 (password-protected) to authenticate: 59 curl -u username: --key ~/.ssh/id_rsa --pass private_key_password [all …]
|
| /external/curl/tests/data/ |
| D | test2055 | 7 HTTP proxy 15 # Server-side 25 Content-Length: 3 26 Content-Type: text/plain 36 Content-Length: 3 37 Content-Type: text/plain 44 # Client-side 48 http-proxy 52 Connect to specific host via SOCKS proxy and HTTP proxy (switch to tunnel mode automatically) 55 proxy [all …]
|
| D | test720 | 12 # Server-side 17 Server: test-server/fake 18 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 19 ETag: "21025-dc7-39462498" 20 Accept-Ranges: bytes 21 Content-Length: 6 23 Content-Type: text/html 24 Funny-head: yesyes 26 -foo- 31 # Client-side [all …]
|
| D | test721 | 12 # Server-side 17 Server: test-server/fake 18 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 19 ETag: "21025-dc7-39462498" 20 Accept-Ranges: bytes 21 Content-Length: 6 23 Content-Type: text/html 24 Funny-head: yesyes 26 -foo- 31 # Client-side [all …]
|
| D | test1470 | 14 # Server-side 19 Server: test-server/fake 20 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 21 ETag: "21025-dc7-39462498" 22 Accept-Ranges: bytes 23 Content-Length: 6 25 Content-Type: text/html 26 Funny-head: yesyes 28 -foo- 33 # Client-side [all …]
|
| D | test1468 | 13 # Server-side 18 Server: test-server/fake 19 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 20 ETag: "21025-dc7-39462498" 21 Accept-Ranges: bytes 22 Content-Length: 6 24 Content-Type: text/html 25 Funny-head: yesyes 27 -foo- 32 # Client-side [all …]
|
| D | test719 | 12 # Server-side 17 Server: test-server/fake 18 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 19 ETag: "21025-dc7-39462498" 20 Accept-Ranges: bytes 21 Content-Length: 6 23 Content-Type: text/html 24 Funny-head: yesyes 26 -foo- 31 # Client-side [all …]
|
| D | test1212 | 11 # Server-side 16 Server: test-server/fake 17 Content-Length: 4 18 Content-Type: text/html 24 # Client-side 27 proxy 33 noproxy setting together with socks proxy 37 …:secret@%HOSTIP:%HTTPPORT/ulion/%TESTNUMBER --socks5 non-existing-host.haxx.se:1080 --noproxy %HOS… 47 User-Agent: curl/%VERSION
|
| D | test717 | 10 # Server-side 15 Server: test-server/fake 16 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 17 ETag: "21025-dc7-39462498" 18 Accept-Ranges: bytes 19 Content-Length: 6 21 Content-Type: text/html 22 Funny-head: yesyes 24 -foo- 36 # Client-side [all …]
|
| D | test742 | 10 # Server-side 15 Server: test-server/fake 16 Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT 17 ETag: "21025-dc7-39462498" 18 Accept-Ranges: bytes 19 Content-Length: 6 21 Content-Type: text/html 22 Funny-head: yesyes 24 -foo- 36 # Client-side [all …]
|
| /external/python/httplib2/ |
| D | CHANGELOG | 3 explicit build-backend workaround for pip build isolation bug 9 IMPORTANT security vulnerability CWE-93 CRLF injection 47 proxy: username/password as str compatible with pysocks 96 PROXY_TYPE_HTTP with non-empty user/pass raised TypeError: bytes required 99 Revert http:443->https workaround 114 proxy: py3 NameError basestring 127 python3 proxy support 130 If no_proxy environment value ends with comma then proxy is not used 133 fix UnicodeDecodeError using socks5 proxy 141 - no_proxy=foo.bar will only skip proxy for exact hostname match [all …]
|
| /external/python/httplib2/python3/httplib2/ |
| D | __init__.py | 1 # -*- coding: utf-8 -*- 47 import socks 50 # idea is to have soft-dependency on any compatible module called socks 51 from . import socks 75 # The httplib debug level, set to a non-zero value to get debug output 133 # ----------- 138 # flat files by default. We need a plug-in architecture 142 # Does not handle a resource that uses conneg and Last-Modified but no ETag as a cache validator. 143 # Does not handle Cache-Control: max-stale 152 # Which headers are hop-by-hop headers by default [all …]
|
| /external/autotest/utils/frozen_chromite/third_party/python3/httplib2/ |
| D | __init__.py | 1 # -*- coding: utf-8 -*- 47 import socks 50 # idea is to have soft-dependency on any compatible module called socks 51 from . import socks 75 # The httplib debug level, set to a non-zero value to get debug output 133 # ----------- 138 # flat files by default. We need a plug-in architecture 142 # Does not handle a resource that uses conneg and Last-Modified but no ETag as a cache validator. 143 # Does not handle Cache-Control: max-stale 152 # Which headers are hop-by-hop headers by default [all …]
|
| /external/autotest/utils/frozen_chromite/third_party/python2/httplib2/ |
| D | __init__.py | 58 from httplib2 import socks 61 import socks 63 socks = None variable 152 # The httplib debug level, set to a non-zero value to get debug output 252 # ----------- 253 # Proxy support 258 # flat files by default. We need a plug-in architecture 262 # Does not handle a resource that uses conneg and Last-Modified but no ETag as a cache validator. 263 # Does not handle Cache-Control: max-stale 275 # Which headers are hop-by-hop headers by default [all …]
|
| /external/python/httplib2/python2/httplib2/ |
| D | __init__.py | 58 from httplib2 import socks 61 import socks 63 socks = None variable 159 # The httplib debug level, set to a non-zero value to get debug output 259 # ----------- 260 # Proxy support 265 # flat files by default. We need a plug-in architecture 269 # Does not handle a resource that uses conneg and Last-Modified but no ETag as a cache validator. 270 # Does not handle Cache-Control: max-stale 282 # Which headers are hop-by-hop headers by default [all …]
|
| /external/curl/tests/ |
| D | FILEFORMAT.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 12 in its own line. Comments are either XML-style (enclosed with `<!--` and 13 `-->`) or shell script style (beginning with `#`) and must appear on their own 43 or even percent-encoded individual bytes. As an example, insert the HTTP 56 %hex[ %XX-encoded data to decode ]hex% 96 Accept-Encoding 103 Accept-Encoding: not-brotli 110 Accept-Encoding: brotli [all …]
|
| /external/python/cpython3/Lib/urllib/ |
| D | request.py | 5 below). It opens the URL and returns the results as file-like 13 non-error returns. The HTTPRedirectHandler automatically deals with 17 urlopen(url, data=None) -- Basic usage is the same as original 19 get a file-like object back. One difference is that you can also pass 24 build_opener -- Function that creates a new OpenerDirector instance. 30 install_opener -- Installs a new opener as the default opener. 34 OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages 37 Request -- An object that encapsulates the state of a request. The 39 headers, e.g. a User-Agent. 41 BaseHandler -- [all …]
|
| /external/okhttp/ |
| D | CHANGELOG.md | 6 _2016-02-25_ 15 _2016-02-07_ 25 _2016-02-06_ 32 _2016-01-07_ 40 _2016-01-01_ 42 * Fix: Don't do a health check on newly-created connections. This is 49 _2015-12-12_ 59 * Fix: Don't resolve DNS addresses when connecting through a SOCKS proxy. 60 * Fix: Drop the synthetic `OkHttp-Selected-Protocol` response header. 67 _2015-11-22_ [all …]
|
| /external/libwebsockets/include/libwebsockets/ |
| D | lws-context-vhost.h | 2 * libwebsockets - small server side websockets and web server implementation 4 * Copyright (C) 2010 - 2021 Andy Green <andy@warmcat.com> 25 /*! \defgroup context-and-vhost context and vhost related functions 55 /**< (VH) Allow non-SSL (plaintext) connections on the same 71 /**< (VH) Check UT-8 correctness */ 85 * http://x.com:443 -> https://x.com 109 /**< For backwards-compatibility reasons, by default 120 * the connection. If they are NULL, for backwards-compatibility the 121 * connection is bound to "raw-skt" role, and in order of priority: 138 * If those explicit user-controlled names are NULL, for backwards- [all …]
|
| /external/webrtc/rtc_base/ |
| D | socket_adapters.cc | 4 * Use of this source code is governed by a BSD-style license 47 return -1; in Send() 55 return -1; in Recv() 63 data_len_ -= read; in Recv() 68 cb -= read; in Recv() 107 buffer_size_ - data_len_, nullptr); in OnReadEvent() 164 0x00, 0x04, // RSA/RC4-128/MD5 199 RTC_LOG(LS_ERROR) << "Received non-matching fake SSL ServerHello message."; in ProcessInput() 205 *len -= sizeof(kSslServerHello); in ProcessInput() 223 const SocketAddress& proxy, in AsyncHttpsProxySocket() argument [all …]
|
| /external/curl/lib/ |
| D | urldata.h | 23 * SPDX-License-Identifier: curl 157 /* return the count of bytes sent, or -1 on error */ 164 /* return the count of bytes read, or -1 on error */ 191 #include "c-hyper.h" 192 #include "cf-socket.h" 234 (((x) && ((x)->magic == CURLEASY_MAGIC_NUMBER))? TRUE: \ 238 ((x) && ((x)->magic == CURLEASY_MAGIC_NUMBER)) 242 /* Types needed for krb5-ftp connections */ 276 /* SSL backend-specific data; declared differently by each SSL backend */ 359 int conn_to_port; /* remote port for the connection (may be -1) */ [all …]
|
| D | rtsp.c | 21 * SPDX-License-Identifier: curl 51 /* protocol-specific functions set up to be called by the main engine */ 58 struct connectdata *conn, curl_socket_t *socks); 85 curl_socket_t *socks) in rtsp_getsock_do() argument 89 socks[0] = conn->sock[FIRSTSOCKET]; in rtsp_getsock_do() 134 data->req.p.rtsp = rtsp = calloc(1, sizeof(struct RTSP)); in rtsp_setup_connection() 138 Curl_dyn_init(&conn->proto.rtspc.buf, MAX_RTP_BUFFERSIZE); in rtsp_setup_connection() 170 if(data->state.rtsp_next_client_CSeq == 0) in rtsp_connect() 171 data->state.rtsp_next_client_CSeq = 1; in rtsp_connect() 172 if(data->state.rtsp_next_server_CSeq == 0) in rtsp_connect() [all …]
|
| /external/curl/docs/libcurl/ |
| D | libcurl-tutorial.md | 1 --- 3 SPDX-License-Identifier: curl 4 Title: libcurl-tutorial 7 See-also: 8 - libcurl-easy (3) 9 - libcurl-errors (3) 10 - libcurl-multi (3) 11 - libcurl-url (3) 13 - All 14 --- [all …]
|