impl: cleaning up some debug flag/symbol

This commit is contained in:
Gaukas Wang 2023-07-29 23:53:01 -06:00
parent 8a3397d0ae
commit 8463016cbc
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D
6 changed files with 1 additions and 17 deletions

View file

@ -286,14 +286,6 @@ 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: