Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for QUICHandshakeDone (1.55 sec)

  1. src/crypto/tls/quic.go

    	// if we offered it. It's returned before QUICEncryptionLevelApplication
    	// keys are returned.
    	// This event only occurs on client connections.
    	QUICRejectedEarlyData
    
    	// QUICHandshakeDone indicates that the TLS handshake has completed.
    	QUICHandshakeDone
    
    	// QUICResumeSession indicates that a client is attempting to resume a previous session.
    	// [QUICEvent.SessionState] is set.
    	//
    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.21.txt

    pkg crypto/tls, const QUICEncryptionLevelInitial = 0 #44886
    pkg crypto/tls, const QUICEncryptionLevelInitial QUICEncryptionLevel #44886
    pkg crypto/tls, const QUICHandshakeDone = 7 #44886
    pkg crypto/tls, const QUICHandshakeDone QUICEventKind #44886
    pkg crypto/tls, const QUICNoEvent = 0 #44886
    pkg crypto/tls, const QUICNoEvent QUICEventKind #44886
    pkg crypto/tls, const QUICRejectedEarlyData = 6 #60107
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  3. src/crypto/tls/quic_test.go

    		case QUICTransportParameters:
    			a.gotParams = e.Data
    			if a.gotParams == nil {
    				a.gotParams = []byte{}
    			}
    		case QUICTransportParametersRequired:
    			return errTransportParametersRequired
    		case QUICHandshakeDone:
    			a.complete = true
    			if a == srv {
    				if err := srv.conn.SendSessionTicket(srv.ticketOpts); err != nil {
    					return err
    				}
    			}
    		case QUICResumeSession:
    			if a.onResumeSession != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"QUICEvent", Type, 21},
    		{"QUICEvent.Data", Field, 21},
    		{"QUICEvent.Kind", Field, 21},
    		{"QUICEvent.Level", Field, 21},
    		{"QUICEvent.Suite", Field, 21},
    		{"QUICEventKind", Type, 21},
    		{"QUICHandshakeDone", Const, 21},
    		{"QUICNoEvent", Const, 21},
    		{"QUICRejectedEarlyData", Const, 21},
    		{"QUICServer", Func, 21},
    		{"QUICSessionTicketOptions", Type, 21},
    		{"QUICSessionTicketOptions.EarlyData", Field, 21},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top