Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for Naked (0.13 sec)

  1. tests/integration/security/filebased_tls_origination/main_test.go

    				TLS:          true,
    			},
    		},
    		// Set up TLS certs on the server. This will make the server listen with these credentials.
    		TLSSettings: &common.TLSSettings{
    			// Echo has these test certs baked into the docker image
    			RootCert:   mustReadCert("root-cert.pem"),
    			ClientCert: mustReadCert("cert-chain.pem"),
    			Key:        mustReadCert("key.pem"),
    			// Override hostname to match the SAN in the cert we are using
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/net/ipsock_posix.go

    // IPv6 support too. So probe the kernel to figure it out.
    func (p *ipStackCapabilities) probe() {
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		// Both ipv4 and ipv6 are faked; see net_fake.go.
    		p.ipv4Enabled = true
    		p.ipv6Enabled = true
    		p.ipv4MappedIPv6Enabled = true
    		return
    	}
    
    	s, err := sysSocket(syscall.AF_INET, syscall.SOCK_STREAM, syscall.IPPROTO_TCP)
    	switch err {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top