Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for usingProxy (0.14 sec)

  1. src/test/java/org/codelibs/curl/io/IOIntegrationTest.java

            MockHttpURLConnection(URL u) {
                super(u);
            }
    
            @Override
            public void disconnect() {
                // Do Nothing
            }
    
            @Override
            public boolean usingProxy() {
                return false;
            }
    
            @Override
            public void connect() throws IOException {
                // Do Nothing
            }
    
            @Override
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

        }
    
        public void disconnect() {
            connection.disconnect();
            handshakeComplete = false;
            connected = false;
        }
    
        public boolean usingProxy() {
            return connection.usingProxy();
        }
    
        public InputStream getErrorStream() {
            try {
                handshake();
            } catch (IOException ex) { }
            return connection.getErrorStream();
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            this.connection.disconnect();
            this.handshakeComplete = false;
            this.connected = false;
        }
    
    
        @Override
        public boolean usingProxy () {
            return this.connection.usingProxy();
        }
    
    
        @Override
        public InputStream getErrorStream () {
            handshake();
            return this.connection.getErrorStream();
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  4. src/net/http/request.go

    		if !usingProxy {
    			host = ""
    		} else {
    			return errors.New("http: invalid Host header")
    		}
    	}
    
    	// According to RFC 6874, an HTTP client, proxy, or other
    	// intermediary must remove any IPv6 zone identifier attached
    	// to an outgoing URI.
    	host = removeZone(host)
    
    	ruri := r.URL.RequestURI()
    	if usingProxy && r.URL.Scheme != "" && r.URL.Opaque == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top