Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for remoteaddr (0.36 sec)

  1. internal/grid/manager.go

    			fmt.Printf("grid: Got a %s request for: %v\n", req.Method, req.URL)
    		}
    		ctx := req.Context()
    		if err := m.authRequest(req); err != nil {
    			gridLogOnceIf(ctx, fmt.Errorf("auth %s: %w", req.RemoteAddr, err), req.RemoteAddr)
    			w.WriteHeader(http.StatusForbidden)
    			return
    		}
    		conn, _, _, err := ws.UpgradeHTTP(req, w)
    		if err != nil {
    			if debugPrint {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. 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)
  3. cmd/sftp-server_test.go

    	return []byte{}
    }
    
    func (m *MockConnMeta) ClientVersion() []byte {
    	return []byte{}
    }
    
    func (m *MockConnMeta) ServerVersion() []byte {
    	return []byte{}
    }
    
    func (m *MockConnMeta) RemoteAddr() net.Addr {
    	return nil
    }
    
    func (m *MockConnMeta) LocalAddr() net.Addr {
    	return nil
    }
    
    func newSSHConnMock(username string) ssh.ConnMetadata {
    	return &MockConnMeta{username: username}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. 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)
  5. src/vendor/golang.org/x/net/nettest/conntest.go

    		}()
    		go func() {
    			defer wg.Done()
    			c1.SetWriteDeadline(aLongTimeAgo)
    		}()
    		go func() {
    			defer wg.Done()
    			c1.LocalAddr()
    		}()
    		go func() {
    			defer wg.Done()
    			c1.RemoteAddr()
    		}()
    	}
    	wg.Wait() // At worst, the deadline is set 10ms into the future
    
    	resyncConn(t, c1)
    	testRoundtrip(t, c1)
    }
    
    // checkForTimeoutError checks that the error satisfies the Error interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. pkg/security/security.go

    func (ac *AuthContext) RemoteAddress() string {
    	if ac.GrpcContext != nil {
    		return GetConnectionAddress(ac.GrpcContext)
    	} else if ac.Request != nil {
    		return ac.Request.RemoteAddr
    	}
    	return ""
    }
    
    // Header returns the authenticated remote address from AuthContext.
    func (ac *AuthContext) Header(header string) []string {
    	if ac.GrpcContext != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. 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)
  8. src/net/http/h2_bundle.go

    				case http2settingsTimerMsg:
    					sc.logf("timeout waiting for SETTINGS frames from %v", sc.conn.RemoteAddr())
    					return
    				case http2idleTimerMsg:
    					sc.vlogf("connection is idle")
    					sc.goAway(http2ErrCodeNo)
    				case http2shutdownTimerMsg:
    					sc.vlogf("GOAWAY close timer fired; closing conn from %v", sc.conn.RemoteAddr())
    					return
    				case http2gracefulShutdownMsg:
    					sc.startGracefulShutdownInternal()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    	switch {
    	case cm.proxyURL == nil:
    		// Do nothing. Not using a proxy.
    	case cm.proxyURL.Scheme == "socks5" || cm.proxyURL.Scheme == "socks5h":
    		conn := pconn.conn
    		d := socksNewDialer("tcp", conn.RemoteAddr().String())
    		if u := cm.proxyURL.User; u != nil {
    			auth := &socksUsernamePassword{
    				Username: u.Username(),
    			}
    			auth.Password, _ = u.Password()
    			d.AuthMethods = []socksAuthMethod{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"array"},
    							Items: &spec.SchemaOrArray{
    								Schema: &spec.Schema{
    									SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top