Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for quicStoreSession (0.18 sec)

  1. src/crypto/tls/quic.go

    	QUICResumeSession
    
    	// QUICStoreSession indicates that the server has provided state permitting
    	// the client to resume the session.
    	// [QUICEvent.SessionState] is set.
    	// The application should use [QUICConn.Store] session to store the [SessionState].
    	// The application may modify the [SessionState] before storing it.
    	// This event only occurs on client connections.
    	QUICStoreSession
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. api/go1.23.txt

    pkg crypto/tls, const QUICResumeSession = 8 #63691
    pkg crypto/tls, const QUICResumeSession QUICEventKind #63691
    pkg crypto/tls, const QUICStoreSession = 9 #63691
    pkg crypto/tls, const QUICStoreSession QUICEventKind #63691
    pkg crypto/tls, method (*ECHRejectionError) Error() string #63369
    pkg crypto/tls, method (*QUICConn) StoreSession(*SessionState) error #63691
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_tls13.go

    	session.ageAdd = msg.ageAdd
    	session.EarlyData = c.quic != nil && msg.maxEarlyData == 0xffffffff // RFC 9001, Section 4.6.1
    	session.ticket = msg.label
    	if c.quic != nil && c.quic.enableStoreSessionEvent {
    		c.quicStoreSession(session)
    		return nil
    	}
    	cs := &ClientSessionState{session: session}
    	if cacheKey := c.clientSessionCacheKey(); cacheKey != "" {
    		c.config.ClientSessionCache.Put(cacheKey, cs)
    	}
    
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top