summaryrefslogtreecommitdiffstats
path: root/net/quic/quic_client_session.h
diff options
context:
space:
mode:
authorrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-02 07:15:12 +0000
committerrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-02 07:15:12 +0000
commitf21ec37668eed3a25ac75df2b10c3b2c97b144d6 (patch)
treeeb952f904159287b0b55537c13c9aec6d4f9e507 /net/quic/quic_client_session.h
parent744c011c8de25dd3d6450533d9265a0bc0562118 (diff)
downloadchromium_src-f21ec37668eed3a25ac75df2b10c3b2c97b144d6.zip
chromium_src-f21ec37668eed3a25ac75df2b10c3b2c97b144d6.tar.gz
chromium_src-f21ec37668eed3a25ac75df2b10c3b2c97b144d6.tar.bz2
Restrict QUIC session pool when channel ID is present.
Review URL: https://codereview.chromium.org/355293003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@280963 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/quic/quic_client_session.h')
-rw-r--r--net/quic/quic_client_session.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/quic/quic_client_session.h b/net/quic/quic_client_session.h
index 7fbe3db..b46c0ab 100644
--- a/net/quic/quic_client_session.h
+++ b/net/quic/quic_client_session.h
@@ -87,8 +87,8 @@ class NET_EXPORT_PRIVATE QuicClientSession : public QuicClientSessionBase {
DISALLOW_COPY_AND_ASSIGN(StreamRequest);
};
- // Constructs a new session which will own |connection| and |helper|, but
- // not |stream_factory|, which must outlive this session.
+ // Constructs a new session connected to |server_id| which will own
+ // |connection|, but not |stream_factory|, which must outlive this session.
// TODO(rch): decouple the factory from the session via a Delegate interface.
QuicClientSession(QuicConnection* connection,
scoped_ptr<DatagramClientSocket> socket,
@@ -219,6 +219,7 @@ class NET_EXPORT_PRIVATE QuicClientSession : public QuicClientSessionBase {
void OnConnectTimeout();
+ const HostPortPair server_host_port_;
bool require_confirmation_;
scoped_ptr<QuicCryptoClientStream> crypto_stream_;
QuicStreamFactory* stream_factory_;