diff options
author | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-05 07:23:13 +0000 |
---|---|---|
committer | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-05 07:23:13 +0000 |
commit | 79d13dcbd75ea30bdadc702248daaa334eec6ade (patch) | |
tree | 599a7fb24d87e20003b4dc8211058e81630f7317 /net/quic/quic_data_stream.cc | |
parent | 3c33b516363ec6fd34be1d5fd6282997d55281b0 (diff) | |
download | chromium_src-79d13dcbd75ea30bdadc702248daaa334eec6ade.zip chromium_src-79d13dcbd75ea30bdadc702248daaa334eec6ade.tar.gz chromium_src-79d13dcbd75ea30bdadc702248daaa334eec6ade.tar.bz2 |
Add the client address to the Public Reset packet.
For future extensibility, encode the fields of QuicPublicResetPacket
as a CryptoHandshakeMessage, which is essentially a QuicTagValueMap.
Move the CryptoHandshakeMessage class to its own files.
Move the QuicTagValueMap type from crypto_protocol.h to
quic_protocol.h.
Merge internal CL: 60963943
Note: net/quic/crypto/crypto_handshake_message.{cc,h} were added
separately in https://codereview.chromium.org/154643006.
R=rch@chromium.org,rtenneti@chromium.org
BUG=none
TEST=net_unittests
Review URL: https://codereview.chromium.org/147763009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248898 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/quic/quic_data_stream.cc')
-rw-r--r-- | net/quic/quic_data_stream.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/quic/quic_data_stream.cc b/net/quic/quic_data_stream.cc index a537d81..c29e061 100644 --- a/net/quic/quic_data_stream.cc +++ b/net/quic/quic_data_stream.cc @@ -7,6 +7,7 @@ #include "base/logging.h" #include "net/quic/quic_session.h" #include "net/quic/quic_spdy_decompressor.h" +#include "net/quic/quic_utils.h" #include "net/quic/quic_write_blocked_list.h" using base::StringPiece; |