Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DialWithConn (0.28 sec)

  1. src/net/http/socks_bundle.go

    	}
    	return &socksConn{Conn: c, boundAddr: a}, nil
    }
    
    // DialWithConn initiates a connection from SOCKS server to the target
    // network and address using the connection c that is already
    // connected to the SOCKS server.
    //
    // It returns the connection's local address assigned by the SOCKS
    // server.
    func (d *socksDialer) DialWithConn(ctx context.Context, c net.Conn, network, address string) (net.Addr, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    			d.AuthMethods = []socksAuthMethod{
    				socksAuthMethodNotRequired,
    				socksAuthMethodUsernamePassword,
    			}
    			d.Authenticate = auth.Authenticate
    		}
    		if _, err := d.DialWithConn(ctx, conn, "tcp", cm.targetAddr); err != nil {
    			conn.Close()
    			return nil, err
    		}
    	case cm.targetScheme == "http":
    		pconn.isProxy = true
    		if pa := cm.proxyAuth(); pa != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top