mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
impl: QUIC Header mimicry
This commit is contained in:
parent
1429e6718b
commit
251b3afe6e
11 changed files with 262 additions and 30 deletions
|
@ -250,6 +250,14 @@ func (h *cryptoSetup) handleEvent(ev qtls.QUICEvent) (done bool, err error) {
|
|||
h.rejected0RTT()
|
||||
return false, nil
|
||||
case qtls.QUICWriteData:
|
||||
// [UQUIC] debug
|
||||
// if ev.Level == qtls.QUICEncryptionLevelInitial {
|
||||
// fmt.Printf("Init: %x\n", ev.Data)
|
||||
// } else if ev.Level == qtls.QUICEncryptionLevelHandshake {
|
||||
// fmt.Printf("HS: %x\n", ev.Data)
|
||||
// } else {
|
||||
// fmt.Printf("APP: %x\n", ev.Data)
|
||||
// }
|
||||
h.WriteRecord(ev.Level, ev.Data)
|
||||
return false, nil
|
||||
case qtls.QUICHandshakeDone:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue