Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for remoteaddr (0.12 sec)

  1. src/net/http/server.go

    	// *tls.Conn.
    	rwc net.Conn
    
    	// remoteAddr is rwc.RemoteAddr().String(). It is not populated synchronously
    	// inside the Listener's Accept goroutine, as some implementations block.
    	// It is populated immediately inside the (*conn).serve goroutine.
    	// This is the value of a Handler's (*Request).RemoteAddr.
    	remoteAddr string
    
    	// tlsState is the TLS connection state when using TLS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    }
    
    func (a dummyAddr) String() string {
    	return string(a)
    }
    
    type noopConn struct{}
    
    func (noopConn) LocalAddr() net.Addr                { return dummyAddr("local-addr") }
    func (noopConn) RemoteAddr() net.Addr               { return dummyAddr("remote-addr") }
    func (noopConn) SetDeadline(t time.Time) error      { return nil }
    func (noopConn) SetReadDeadline(t time.Time) error  { return nil }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	if r.FormValue("close") == "true" {
    		w.Header().Set("Connection", "close")
    	}
    	w.Header().Set("X-Saw-Close", fmt.Sprint(r.Close))
    	w.Write([]byte(r.RemoteAddr))
    
    	// Include the address of the net.Conn in addition to the RemoteAddr,
    	// in case kernels reuse source ports quickly (see Issue 52450)
    	if c, ok := ResponseWriterConnForTesting(w); ok {
    		fmt.Fprintf(w, ", %T %p", c, c)
    	}
    })
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	EnumerationOfComparison int32
    }
    
    type AFProtocols struct {
    	AddressFamily int32
    	Protocol      int32
    }
    
    type CSAddrInfo struct {
    	LocalAddr  SocketAddress
    	RemoteAddr SocketAddress
    	SocketType int32
    	Protocol   int32
    }
    
    type BLOB struct {
    	Size     uint32
    	BlobData *byte
    }
    
    type ComStat struct {
    	Flags    uint32
    	CBInQue  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
Back to top