Home
last modified time | relevance | path

Searched refs:proxyUrl (Results 1 – 25 of 240) sorted by relevance

12345678910

/dports/www/wwwoffle/wwwoffle-2.9j/src/
H A Dhttp.c30 static URL /*@null@*/ /*@only@*/ *proxyUrl=NULL; variable
58 if(proxyUrl) in HTTP_Open()
59 FreeURL(proxyUrl); in HTTP_Open()
60 proxyUrl=NULL; in HTTP_Open()
63 server_host=proxyUrl->host; in HTTP_Open()
64 server_port=proxyUrl->port; in HTTP_Open()
109 if(proxyUrl) in HTTP_Request()
118 if(proxyUrl) in HTTP_Request()
181 if(proxyUrl) in HTTP_Close()
182 FreeURL(proxyUrl); in HTTP_Close()
[all …]
H A Dhttps.c40 static URL /*@null@*/ /*@only@*/ *proxyUrl=NULL; variable
68 if(proxyUrl) in HTTPS_Open()
69 FreeURL(proxyUrl); in HTTPS_Open()
70 proxyUrl=NULL; in HTTPS_Open()
73 server_host=proxyUrl->host; in HTTPS_Open()
74 server_port=proxyUrl->port; in HTTPS_Open()
180 if(proxyUrl) in HTTPS_Request()
189 if(proxyUrl) in HTTPS_Request()
252 if(proxyUrl) in HTTPS_Close()
253 FreeURL(proxyUrl); in HTTPS_Close()
[all …]
H A Dfinger.c31 static URL /*@null@*/ /*@only@*/ *proxyUrl=NULL; variable
59 if(proxyUrl) in Finger_Open()
60 FreeURL(proxyUrl); in Finger_Open()
61 proxyUrl=NULL; in Finger_Open()
64 server_host=proxyUrl->host; in Finger_Open()
65 server_port=proxyUrl->port; in Finger_Open()
111 if(proxyUrl) in Finger_Request()
168 if(proxyUrl) in Finger_ReadHead()
215 if(proxyUrl) in Finger_Close()
216 FreeURL(proxyUrl); in Finger_Close()
[all …]
H A Dssl.c47 static URL /*@null@*/ /*@only@*/ *proxyUrl=NULL; variable
75 if(proxyUrl) in SSL_Open()
76 FreeURL(proxyUrl); in SSL_Open()
77 proxyUrl=NULL; in SSL_Open()
80 server_host=proxyUrl->host; in SSL_Open()
81 server_port=proxyUrl->port; in SSL_Open()
131 if(proxyUrl) in SSL_Request()
137 MakeRequestProxyAuthorised(proxyUrl,request_head); in SSL_Request()
223 if(proxyUrl) in SSL_Close()
224 FreeURL(proxyUrl); in SSL_Close()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/WebProcess/qt/
H A DWebProcessMainQt.cpp85 QUrl proxyUrl = QUrl::fromUserInput(QString::fromLocal8Bit(qgetenv("http_proxy"))); in initializeFromEnvironment() local
86 if (proxyUrl.isValid() && !proxyUrl.host().isEmpty()) { in initializeFromEnvironment()
87 int proxyPort = (proxyUrl.port() > 0) ? proxyUrl.port() : 8080; in initializeFromEnvironment()
88 m_httpProxy << QNetworkProxy(QNetworkProxy::HttpProxy, proxyUrl.host(), proxyPort); in initializeFromEnvironment()
93 proxyUrl = QUrl::fromUserInput(QString::fromLocal8Bit(qgetenv("https_proxy"))); in initializeFromEnvironment()
94 if (proxyUrl.isValid() && !proxyUrl.host().isEmpty()) { in initializeFromEnvironment()
95 int proxyPort = (proxyUrl.port() > 0) ? proxyUrl.port() : 8080; in initializeFromEnvironment()
96 m_httpsProxy << QNetworkProxy(QNetworkProxy::HttpProxy, proxyUrl.host(), proxyPort); in initializeFromEnvironment()
/dports/devel/qt5-location/kde-qtlocation-5.15.2p6/src/plugins/geoservices/nokia/
H A Dqgeointrinsicnetworkaccessmanager.cpp69 QUrl proxyUrl(proxy); in configure() local
70 if (proxyUrl.isValid()) { in configure()
71 qDebug() << "Setting proxy to " << proxyUrl.toString(); in configure()
74 proxyUrl.host(), in configure()
75 proxyUrl.port(8080), in configure()
76 proxyUrl.userName(), in configure()
77 proxyUrl.password())); in configure()
/dports/sysutils/signon-plugin-oauth2/signon-plugin-oauth2-091887d09bb635fa31f69ed16d384563cddc8009/src/
H A Dplugin.cpp95 QUrl proxyUrl(proxy); in process() local
96 if (!proxyUrl.host().isEmpty()) { in process()
98 proxyUrl.host(), in process()
99 proxyUrl.port(), in process()
100 proxyUrl.userName(), in process()
101 proxyUrl.password()); in process()
102 TRACE() << proxyUrl.host() << ":" << proxyUrl.port(); in process()
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/upstreamproxy/
H A Dtransport_proxy_auth.go60 proxyUrl, err := rawTransport.Proxy(nil)
64 if proxyUrl.Scheme != "http" {
65 return nil, fmt.Errorf("%s unsupported", proxyUrl.Scheme)
67 if proxyUrl.User != nil {
68 tr.username = proxyUrl.User.Username()
69 tr.password, _ = proxyUrl.User.Password()
73 proxyUrl.User = nil
74 rawTransport.Proxy = http.ProxyURL(proxyUrl)
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/upstreamproxy/
H A Dtransport_proxy_auth.go60 proxyUrl, err := rawTransport.Proxy(nil)
64 if proxyUrl.Scheme != "http" {
65 return nil, fmt.Errorf("%s unsupported", proxyUrl.Scheme)
67 if proxyUrl.User != nil {
68 tr.username = proxyUrl.User.Username()
69 tr.password, _ = proxyUrl.User.Password()
73 proxyUrl.User = nil
74 rawTransport.Proxy = http.ProxyURL(proxyUrl)
/dports/devel/kf5-kio/kio-5.89.0/src/ioslaves/http/
H A Dhttp.h142 QUrl proxyUrl; member
174 proxyUrl = request.proxyUrl; in initFrom()
184 … if (proxyUrl.host() == request.proxyUrl.host() && proxyUrl.port() == request.proxyUrl.port()) { in updateCredentials()
185 proxyUrl.setUserName(request.proxyUrl.userName()); in updateCredentials()
186 proxyUrl.setPassword(request.proxyUrl.password()); in updateCredentials()
194 proxyUrl.clear(); in clear()
201 QUrl proxyUrl; member
/dports/net-mgmt/icingaweb2-module-reactbundle/icingaweb2-module-reactbundle-0.9.0/vendor/clue/http-proxy-react/src/
H A DProxyConnector.php51 * @param string $proxyUrl The proxy URL may or may not contain a scheme and
60 …public function __construct($proxyUrl, ConnectorInterface $connector, array $httpHeaders = array()) argument
63 if (preg_match('/^http\+unix:\/\/(.*?@)?(.+?)$/', $proxyUrl, $match)) {
65 $proxyUrl = 'http://' . $match[1] . 'localhost';
74 if (strpos($proxyUrl, '://') === false) {
75 $proxyUrl = 'http://' . $proxyUrl;
80 throw new InvalidArgumentException('Invalid proxy URL "' . $proxyUrl . '"');
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/libraries/classes/Utils/
H A DHttpRequest.php17 private $proxyUrl; variable in PhpMyAdmin\\Utils\\HttpRequest
28 $this->proxyUrl = $cfg['ProxyUrl'];
43 if (strlen($this->proxyUrl) > 0) {
45 'proxy' => $this->proxyUrl,
110 if (strlen($this->proxyUrl) > 0) {
111 $curlStatus &= curl_setopt($curlHandle, CURLOPT_PROXY, $this->proxyUrl);
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/classes/Utils/
H A DHttpRequest.php44 private $proxyUrl; variable in PhpMyAdmin\\Utils\\HttpRequest
56 $this->proxyUrl = $cfg['ProxyUrl'];
71 if (strlen($this->proxyUrl) > 0) {
73 'proxy' => $this->proxyUrl,
140 if (strlen($this->proxyUrl) > 0) {
141 $curlStatus &= curl_setopt($curlHandle, CURLOPT_PROXY, $this->proxyUrl);
/dports/security/vault/vault-1.8.2/vendor/k8s.io/apimachinery/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}, e…
38 proxyUrl <- listener.Addr().String()
137 var proxyUrl string
141 case proxyUrl = <-proxyUrlChan:
144 conn, err := net.Dial("tcp4", proxyUrl)
/dports/www/oauth2-proxy/oauth2-proxy-7.2.0/vendor/k8s.io/apimachinery/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}, e…
38 proxyUrl <- listener.Addr().String()
137 var proxyUrl string
141 case proxyUrl = <-proxyUrlChan:
144 conn, err := net.Dial("tcp4", proxyUrl)
/dports/sysutils/helmfile/helmfile-0.138.7/vendor/k8s.io/apimachinery/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}, e…
38 proxyUrl <- listener.Addr().String()
137 var proxyUrl string
141 case proxyUrl = <-proxyUrlChan:
144 conn, err := net.Dial("tcp4", proxyUrl)
/dports/sysutils/istio/istio-1.6.7/vendor/k8s.io/apimachinery/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}, e…
38 proxyUrl <- listener.Addr().String()
137 var proxyUrl string
141 case proxyUrl = <-proxyUrlChan:
144 conn, err := net.Dial("tcp4", proxyUrl)
/dports/security/i2pd/i2pd-2.40.0/libi2pd/
H A DReseed.cpp523 i2p::http::URL proxyUrl; in HttpsRequest() local
528 if(proxyUrl.parse(proxy)) { in HttpsRequest()
529 if (proxyUrl.schema == "http" && !proxyUrl.port) { in HttpsRequest()
530 proxyUrl.port = 80; in HttpsRequest()
531 } else if (proxyUrl.schema == "socks" && !proxyUrl.port) { in HttpsRequest()
532 proxyUrl.port = 1080; in HttpsRequest()
535 if (proxyUrl.schema != "http" && proxyUrl.schema != "socks") { in HttpsRequest()
560 if(proxyUrl.schema.size()) in HttpsRequest()
564 boost::asio::ip::tcp::resolver::query (proxyUrl.host, std::to_string(proxyUrl.port)), ecode); in HttpsRequest()
571 if(proxyUrl.schema == "http") in HttpsRequest()
[all …]
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/k8s.io/apimachinery/apimachinery-0.16.8/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}) {
37 proxyUrl <- listener.Addr().String()
126 proxyUrl := <-proxyUrlChan
128 conn, err := net.Dial("tcp4", proxyUrl)
/dports/misc/concourse/concourse-6.7.2/vendor/k8s.io/apimachinery/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}) {
37 proxyUrl <- listener.Addr().String()
126 proxyUrl := <-proxyUrlChan
128 conn, err := net.Dial("tcp4", proxyUrl)
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/k8s.io/apimachinery/apimachinery-6fa4771c83b3/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}) {
37 proxyUrl <- listener.Addr().String()
126 proxyUrl := <-proxyUrlChan
128 conn, err := net.Dial("tcp4", proxyUrl)
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/k8s.io/apimachinery/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}) {
37 proxyUrl <- listener.Addr().String()
126 proxyUrl := <-proxyUrlChan
128 conn, err := net.Dial("tcp4", proxyUrl)
/dports/devel/mutagen/mutagen-0.11.8/vendor/k8s.io/apimachinery/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}) {
37 proxyUrl <- listener.Addr().String()
126 proxyUrl := <-proxyUrlChan
128 conn, err := net.Dial("tcp4", proxyUrl)
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/openshift/api/vendor/k8s.io/apimachinery/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}) {
37 proxyUrl <- listener.Addr().String()
126 proxyUrl := <-proxyUrlChan
128 conn, err := net.Dial("tcp4", proxyUrl)
/dports/sysutils/terraform/terraform-1.0.11/vendor/k8s.io/apimachinery/pkg/util/httpstream/spdy/
H A Dconnection_test.go30 func runProxy(t *testing.T, backendUrl string, proxyUrl chan<- string, proxyDone chan<- struct{}) {
37 proxyUrl <- listener.Addr().String()
126 proxyUrl := <-proxyUrlChan
128 conn, err := net.Dial("tcp4", proxyUrl)

12345678910