Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newQUICConn (0.16 sec)

  1. src/crypto/tls/quic.go

    func QUICClient(config *QUICConfig) *QUICConn {
    	return newQUICConn(Client(nil, config.TLSConfig), config)
    }
    
    // QUICServer returns a new TLS server side connection using QUICTransport as the
    // underlying transport. The config cannot be nil.
    //
    // The config's MinVersion must be at least TLS 1.3.
    func QUICServer(config *QUICConfig) *QUICConn {
    	return newQUICConn(Server(nil, config.TLSConfig), config)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top