diff options
author | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-20 16:03:55 +0000 |
---|---|---|
committer | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-20 16:03:55 +0000 |
commit | e4696aaab9ff077cf816a91e1d82ccc6251c25f1 (patch) | |
tree | 67725c5c93e2c1e77021d84550c34f3c00a281b8 /net/tools/quic/quic_client.h | |
parent | 52656e0176001ea7f6a2d6191d61681dcb0b7ef2 (diff) | |
download | chromium_src-e4696aaab9ff077cf816a91e1d82ccc6251c25f1.zip chromium_src-e4696aaab9ff077cf816a91e1d82ccc6251c25f1.tar.gz chromium_src-e4696aaab9ff077cf816a91e1d82ccc6251c25f1.tar.bz2 |
Land Recent QUIC changes.
Moving QUIC over to the new QUIC/SPDY write blocked list template.
Fixing all QUIC streams to a single priority for now.
Merge internal change: 50911466
Factoring out the spdy write blocked logic into a utility Spdy and Quic
can share.
Merge internal change: 50897578
Moving the quic dispatcher from using the WriteBlockedList to using a
generic linked hash map, in preperation to adding priorities to the
WriteBlockedList.
Merge internal change: 50728003
QUIC dead code removal.
Merge internal change: 50710912
Clarify batch mode in packet generator.
Merge internal change: 50587122
Minor spacing/wording fixes to DLOG messages in quic_connection.
Merge internal change: 50574131
Define kDefaultRetransmissionTime once in QuicConnectionTest.
Merge internal change: 50571883
Deleted FramePackingAckResponse from chromium and will do the same on
server side in another CL.
Improve frame packing of acks and other frames when acks are received.
Merge internal change: 50521649
Fix TODO in quic_connection.cc
Merge internal change: 50515632
R=rch@chromium.org
Review URL: https://chromiumcodereview.appspot.com/22801008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218500 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/tools/quic/quic_client.h')
-rw-r--r-- | net/tools/quic/quic_client.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/tools/quic/quic_client.h b/net/tools/quic/quic_client.h index ca20a8d2..5e89601 100644 --- a/net/tools/quic/quic_client.h +++ b/net/tools/quic/quic_client.h @@ -102,8 +102,6 @@ class QuicClient : public EpollCallbackInterface { bool connected() const; - int packets_dropped() { return packets_dropped_; } - void set_bind_to_address(IPAddressNumber address) { bind_to_address_ = address; } @@ -112,8 +110,6 @@ class QuicClient : public EpollCallbackInterface { void set_local_port(int local_port) { local_port_ = local_port; } - int local_port() { return local_port_; } - const IPEndPoint& server_address() const { return server_address_; } const IPEndPoint& client_address() const { return client_address_; } |