A QUICConfig configures a [QUICConn].
| 48 | |
| 49 | // A QUICConfig configures a [QUICConn]. |
| 50 | type QUICConfig struct { |
| 51 | TLSConfig *Config |
| 52 | |
| 53 | // EnableSessionEvents may be set to true to enable the |
| 54 | // [QUICStoreSession] and [QUICResumeSession] events for client connections. |
| 55 | // When this event is enabled, sessions are not automatically |
| 56 | // stored in the client session cache. |
| 57 | // The application should use [QUICConn.StoreSession] to store sessions. |
| 58 | EnableSessionEvents bool |
| 59 | } |
| 60 | |
| 61 | // A QUICEventKind is a type of operation on a QUIC connection. |
| 62 | type QUICEventKind int |
nothing calls this directly
no outgoing calls
no test coverage detected