QUICClient returns a new TLS client side connection using QUICTransport as the underlying transport. The config cannot be nil. The config's MinVersion must be at least TLS 1.3.
(config *QUICConfig)
| 173 | // |
| 174 | // The config's MinVersion must be at least TLS 1.3. |
| 175 | func QUICClient(config *QUICConfig) *QUICConn { |
| 176 | return newQUICConn(Client(nil, config.TLSConfig), config) |
| 177 | } |
| 178 | |
| 179 | // QUICServer returns a new TLS server side connection using QUICTransport as the |
| 180 | // underlying transport. The config cannot be nil. |
nothing calls this directly
no test coverage detected
searching dependent graphs…