mirror of
https://github.com/facebookincubator/mvfst.git
synced 2025-11-24 04:01:07 +03:00
Back out "Implement handshake done and cipher dropping."
Summary: This caused an increase in client errors. Reviewed By: yangchi, lnicco Differential Revision: D20186386 fbshipit-source-id: 737122a94c97498efba61292a6c292cfe482925c
This commit is contained in:
committed by
Facebook Github Bot
parent
8a386d9549
commit
61cd1a7289
@@ -645,10 +645,6 @@ ExpiredStreamDataFrame decodeExpiredStreamDataFrame(folly::io::Cursor& cursor) {
|
||||
folly::to<StreamId>(streamId->first), minimumStreamOffset->first);
|
||||
}
|
||||
|
||||
HandshakeDoneFrame decodeHandshakeDoneFrame(folly::io::Cursor& /*cursor*/) {
|
||||
return HandshakeDoneFrame();
|
||||
}
|
||||
|
||||
QuicFrame parseFrame(
|
||||
BufQueue& queue,
|
||||
const PacketHeader& header,
|
||||
@@ -737,8 +733,6 @@ QuicFrame parseFrame(
|
||||
return QuicFrame(decodeMinStreamDataFrame(cursor));
|
||||
case FrameType::EXPIRED_STREAM_DATA:
|
||||
return QuicFrame(decodeExpiredStreamDataFrame(cursor));
|
||||
case FrameType::HANDSHAKE_DONE:
|
||||
return QuicFrame(decodeHandshakeDoneFrame(cursor));
|
||||
}
|
||||
} catch (const std::exception&) {
|
||||
error = true;
|
||||
|
||||
Reference in New Issue
Block a user