Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for ServerName (0.33 sec)

  1. src/net/http/transport.go

    // The remote endpoint's name may be overridden by TLSClientConfig.ServerName.
    func (pconn *persistConn) addTLS(ctx context.Context, name string, trace *httptrace.ClientTrace) error {
    	// Initiate TLS and check remote host name against certificate.
    	cfg := cloneTLSConfig(pconn.t.TLSClientConfig)
    	if cfg.ServerName == "" {
    		cfg.ServerName = name
    	}
    	if pconn.cacheKey.onlyH1 {
    		cfg.NextProtos = nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    		neterr = syscall.Errno(r0)
    	}
    	return
    }
    
    func NetUserEnum(serverName *uint16, level uint32, filter uint32, buf **byte, prefMaxLen uint32, entriesRead *uint32, totalEntries *uint32, resumeHandle *uint32) (neterr error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    			t.Errorf("Host header = %q; want %q", r.Host, want)
    		}
    		if mode == http2Mode {
    			if r.TLS == nil {
    				t.Errorf("r.TLS == nil")
    			} else if r.TLS.ServerName != punyDomain {
    				t.Errorf("TLS.ServerName = %q; want %q", r.TLS.ServerName, punyDomain)
    			}
    		}
    		w.Header().Set("Hit-Handler", "1")
    	}), func(tr *Transport) {
    		if tr.TLSClientConfig != nil {
    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/main/java/jcifs/smb/SmbFile.java

     * address. These name resolution mechanisms and their resolution order
     * can be changed (See <a href="../../../resolver.html">Setting Name
     * Resolution Properties</a>). The servername and path components are
     * not case sensitive but the domain, username, and password components
     * are. It is also likely that properties must be specified for jcifs
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. src/net/http/h2_bundle.go

    			return
    		}
    
    		if sc.tlsState.ServerName == "" {
    			// Client must use SNI, but we don't enforce that anymore,
    			// since it was causing problems when connecting to bare IP
    			// addresses during development.
    			//
    			// TODO: optionally enforce? Or enforce at the time we receive
    			// a new request, and verify the ServerName matches the :authority?
    			// But that precludes proxy situations, perhaps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    		// depending on the protocol, we can differentiate between hosts when proxying:
    		// - with HTTP, the authority header can be used
    		// - with HTTPS/TLS with SNI, the ServerName can be used
    		// however, for plain TCP there is no way to differentiate between the
    		// hosts so we consider it invalid, unless the resolution type is NONE
    		// (because the hosts are ignored).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"serverName": {
    						SchemaProps: spec.SchemaProps{
    							Description: "ServerName is passed to the server for SNI and is used in the client to check server certificates against. If ServerName is empty, the hostname used to contact the server is used.",
    							Type:        []string{"string"},
    							Format:      "",
    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