Lines Matching refs:proto

73     def test_10_02_proxys_down(self, env: Env, httpd, proto, repeat):  argument
74 if proto == 'h2' and not env.curl_uses_lib('nghttp2'):
78 xargs = curl.get_proxy_args(proto=proto)
82 protocol='HTTP/2' if proto == 'h2' else 'HTTP/1.1')
94 def test_10_02_proxys_up(self, env: Env, httpd, nghttpx, proto, argument
96 if proto == 'h2' and not env.curl_uses_lib('nghttp2'):
102 xargs = curl.get_proxy_args(proto=proto)
103 r = curl.http_upload(urls=[url], data=f'@{srcfile}', alpn_proto=proto,
106 protocol='HTTP/2' if proto == 'h2' else 'HTTP/1.1')
136 def test_10_05_proxytunnel_http(self, env: Env, httpd, proto, repeat): argument
140 r = curl.http_download(urls=[url], alpn_proto=proto, with_stats=True,
143 protocol='HTTP/2' if proto == 'h2' else 'HTTP/1.1')
151 def test_10_06_proxytunnel_https(self, env: Env, httpd, nghttpx_fwd, proto, tunnel, repeat): argument
156 xargs = curl.get_proxy_args(tunnel=True, proto=tunnel)
157 r = curl.http_download(urls=[url], alpn_proto=proto, with_stats=True,
160 protocol='HTTP/2' if proto == 'h2' else 'HTTP/1.1')
177 def test_10_07_pts_down_small(self, env: Env, httpd, nghttpx_fwd, proto, argument
184 xargs = curl.get_proxy_args(tunnel=True, proto=tunnel)
185 r = curl.http_download(urls=[url], alpn_proto=proto, with_stats=True,
188 protocol='HTTP/2' if proto == 'h2' else 'HTTP/1.1')
207 def test_10_08_upload_seq_large(self, env: Env, httpd, nghttpx, proto, argument
215 xargs = curl.get_proxy_args(tunnel=True, proto=tunnel)
216 r = curl.http_upload(urls=[url], data=f'@{srcfile}', alpn_proto=proto,
236 xargs = curl.get_proxy_args(tunnel=True, proto=tunnel)
259 proxy_args = curl.get_proxy_args(tunnel=True, proto=tunnel)
284 proxy_args = curl.get_proxy_args(tunnel=True, proto=tunnel)
310 proxy_args = curl.get_proxy_args(tunnel=True, proto=tunnel)
336 proxy_args = curl.get_proxy_args(tunnel=True, proto=tunnel)
357 def test_10_14_proxys_ip_addr(self, env: Env, httpd, proto, repeat): argument
358 if proto == 'h2' and not env.curl_uses_lib('nghttp2'):
362 xargs = curl.get_proxy_args(proto=proto, use_ip=True)
370 protocol='HTTP/2' if proto == 'h2' else 'HTTP/1.1')