From 32f6c57ca2a84608f2818a3da523b87e6fd79fc3 Mon Sep 17 00:00:00 2001 From: bol-van Date: Sun, 21 Apr 2024 15:50:15 +0300 Subject: [PATCH] nfqws: quicv2 change draft to rfc --- nfq/protocol.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/nfq/protocol.c b/nfq/protocol.c index afeb989..9e9ce22 100644 --- a/nfq/protocol.c +++ b/nfq/protocol.c @@ -342,13 +342,6 @@ static bool is_quic_draft_max(uint32_t draft_version, uint8_t max_version) { return draft_version && draft_version <= max_version; } -static bool is_quic_version_with_v1_labels(uint32_t version) -{ - if (((version & 0xFFFFFF00) == 0x51303500) /* Q05X */ || - ((version & 0xFFFFFF00) == 0x54303500)) /* T05X */ - return true; - return is_quic_draft_max(QUICDraftVersion(version), 34); -} static bool is_quic_v2(uint32_t version) { return version == 0x6b3343cf;