summaryrefslogtreecommitdiffstats
path: root/net/tools/quic/quic_server_session.h
diff options
context:
space:
mode:
authorrtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-05 17:56:04 +0000
committerrtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-05 17:56:04 +0000
commit25c31dcb4a912a0b06cda0d0047b72cf03549eaa (patch)
tree3e1adaaf514f005e1a3e1d31c22983de8c914e6a /net/tools/quic/quic_server_session.h
parent1dd2d8ed90359fc472fe0525c9ee2b2bc27f198f (diff)
downloadchromium_src-25c31dcb4a912a0b06cda0d0047b72cf03549eaa.zip
chromium_src-25c31dcb4a912a0b06cda0d0047b72cf03549eaa.tar.gz
chromium_src-25c31dcb4a912a0b06cda0d0047b72cf03549eaa.tar.bz2
Land Recent QUIC changes.
Merge internal change: 47341065 Fix to ensure the version matches before declaring that the public header flags exceed the max value. b/9190456 Merge internal change: 47324563 Fixing another backup bug (exposed by the last fix) that if we failed to write a standalone fin the stream would not be marked as write blocked. Merge internal change: 47272116 Don't add QuicStreams to ActiveSessionList; Instead call DumpSession on alive streams via QuicSession. Merge internal change: 47226512 Making the packet sequence number variable length to minimize bytes on the wire. Merge internal change: 47220850 Fixing a bug in quic stream where we'd send rst stream packets for successful streams. The fin bit should be sufficient for both good request/response pairs and early response pairs. Merge internal change: 47086343 Don't let FEC packets consume congestion window forever. If a FEC packet is not acked after a certain time, it is cleared from the congestion window. This timeout is higher than normal RTO. Merge internal change: 47056082 Add QuicSession to ActiveSessionList. Merge internal change: 47048300 Fixing a backup/resumption bug in QUIC. It's possible to have a full congestion window worth of packets on the wire. If we are in this state and a session tries to SendStreamData, the QuicPacketGenerator short-circuits without queuing packets because it checks to see if the connection CanWrite. When we get an ack, we check to see if we have locally queued packets, but never call OnCanWrite on the session to clear any streams which write blocked without queueing packets. Merge internal change: 47000173 QUIC: wire up the server-nonce parameters to the server config. Merge internal change: 46985067 R=rch@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=204046 Review URL: https://codereview.chromium.org/16256017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204289 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/tools/quic/quic_server_session.h')
-rw-r--r--net/tools/quic/quic_server_session.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tools/quic/quic_server_session.h b/net/tools/quic/quic_server_session.h
index 8405372..87f37a0 100644
--- a/net/tools/quic/quic_server_session.h
+++ b/net/tools/quic/quic_server_session.h
@@ -46,7 +46,7 @@ class QuicServerSession : public QuicSession {
virtual ~QuicServerSession();
- virtual void Initialize(const QuicCryptoServerConfig& crypto_config);
+ virtual void InitializeSession(const QuicCryptoServerConfig& crypto_config);
protected:
// QuicSession methods: