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

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

Issue 1541263002: Landing Recent QUIC changes until 12/18/2015 13:57 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: replace -1 with 0xff for InvalidPathId Created 5 years 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_packet_reader.cc ('k') | net/tools/quic/quic_server_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_server_session.h
diff --git a/net/tools/quic/quic_server_session.h b/net/tools/quic/quic_server_session.h
index bb3788acf10b357a46b2881b4d294092756a1f26..e3958553c534393ac234f00fc2976bbd16939267 100644
--- a/net/tools/quic/quic_server_session.h
+++ b/net/tools/quic/quic_server_session.h
@@ -79,20 +79,6 @@ class QuicServerSession : public QuicSpdySession {
// Override base class to process FEC config received from client.
void OnConfigNegotiated() override;
- bool UsingStatelessRejectsIfPeerSupported() {
- if (GetCryptoStream() == nullptr) {
- return false;
- }
- return GetCryptoStream()->UseStatelessRejectsIfPeerSupported();
- }
-
- bool PeerSupportsStatelessRejects() {
- if (GetCryptoStream() == nullptr) {
- return false;
- }
- return GetCryptoStream()->PeerSupportsStatelessRejects();
- }
-
void set_serving_region(const std::string& serving_region) {
serving_region_ = serving_region;
}
« no previous file with comments | « net/tools/quic/quic_packet_reader.cc ('k') | net/tools/quic/quic_server_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698