We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2d536 commit 6d9918dCopy full SHA for 6d9918d
src/plugins/process/quic/src/quicParser.cpp
@@ -99,6 +99,10 @@ std::optional<std::size_t> QUICParser::parseInitial(
99
currentDCID,
100
version,
101
primaryHeaderLength);
102
+
103
+ if (!initialHeaderView.has_value() && !initialDCID.has_value()) {
104
+ return std::nullopt;
105
+ }
106
if (!initialHeaderView.has_value() && initialDCID.has_value()) {
107
initialHeaderView = QUICInitialHeaderView::createFrom(
108
payload,
0 commit comments