Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for quicRejectedEarlyData (0.29 sec)

  1. src/crypto/tls/quic.go

    	QUICTransportParametersRequired
    
    	// QUICRejectedEarlyData indicates that the server rejected 0-RTT data even
    	// 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
    
    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. src/crypto/tls/handshake_client_tls13.go

    		} else {
    			// Server selected a cipher suite incompatible with the PSK.
    			hello.pskIdentities = nil
    			hello.pskBinders = nil
    		}
    	}
    
    	if hello.earlyData {
    		hello.earlyData = false
    		c.quicRejectedEarlyData()
    	}
    
    	if isInnerHello {
    		// Any extensions which have changed in hello, but are mirrored in the
    		// outer hello and compressed, need to be copied to the outer hello, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. api/go1.21.txt

    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
    pkg crypto/tls, const QUICRejectedEarlyData QUICEventKind #60107
    pkg crypto/tls, const QUICSetReadSecret = 1 #44886
    pkg crypto/tls, const QUICSetReadSecret QUICEventKind #44886
    pkg crypto/tls, const QUICSetWriteSecret = 2 #44886
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. src/crypto/tls/quic_test.go

    					return err
    				}
    			}
    		case QUICResumeSession:
    			if a.onResumeSession != nil {
    				a.onResumeSession(e.SessionState)
    			}
    		case QUICRejectedEarlyData:
    			a.earlyDataRejected = true
    		}
    		if e.Kind != QUICNoEvent {
    			idleCount = 0
    		}
    	}
    }
    
    func TestQUICConnection(t *testing.T) {
    	config := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"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},
    		{"QUICSetReadSecret", Const, 21},
    		{"QUICSetWriteSecret", Const, 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