Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3135)

Unified Diff: net/tools/quic/quic_dispatcher.h

Issue 1397983007: relnote: remove insecure QUIC support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rch_insecure_quic
Patch Set: Compile fix Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/quic/quic_client_test.cc ('k') | net/tools/quic/quic_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_dispatcher.h
diff --git a/net/tools/quic/quic_dispatcher.h b/net/tools/quic/quic_dispatcher.h
index 701f31198176567b965735917fdaf6015de046c0..624dcf9ead79322768a56728d24b09d09fe86376 100644
--- a/net/tools/quic/quic_dispatcher.h
+++ b/net/tools/quic/quic_dispatcher.h
@@ -133,13 +133,9 @@ class QuicDispatcher : public QuicServerSessionVisitor,
// sent with unique packet numbers.)
static const QuicPacketNumber kMaxReasonableInitialPacketNumber = 100;
static_assert(kMaxReasonableInitialPacketNumber >=
- kInitialCongestionWindowSecure + 10,
+ kInitialCongestionWindow + 10,
"kMaxReasonableInitialPacketNumber is unreasonably small "
- "relative to kInitialCongestionWindowSecure.");
- static_assert(kMaxReasonableInitialPacketNumber >=
- kInitialCongestionWindowInsecure + 10,
- "kMaxReasonableInitialPacketNumber is unreasonably small "
- "relative to kInitialCongestionWindowInsecure.");
+ "relative to kInitialCongestionWindow.");
protected:
virtual QuicServerSession* CreateQuicSession(
« no previous file with comments | « net/tools/quic/quic_client_test.cc ('k') | net/tools/quic/quic_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698