Index: net/quic/quic_client_session.cc |
diff --git a/net/quic/quic_client_session.cc b/net/quic/quic_client_session.cc |
index c083ffa01123dc35074dee7e01a7c2d61bf73042..8b986320577b79938f4ed7b9decda5f70e623bb0 100644 |
--- a/net/quic/quic_client_session.cc |
+++ b/net/quic/quic_client_session.cc |
@@ -87,6 +87,7 @@ QuicClientSession::QuicClientSession( |
QuicStreamFactory* stream_factory, |
QuicCryptoClientStreamFactory* crypto_client_stream_factory, |
const string& server_hostname, |
+ uint16 server_port, |
const QuicConfig& config, |
QuicCryptoClientConfig* crypto_config, |
NetLog* net_log) |
@@ -105,8 +106,9 @@ QuicClientSession::QuicClientSession( |
crypto_stream_.reset( |
crypto_client_stream_factory ? |
crypto_client_stream_factory->CreateQuicCryptoClientStream( |
- server_hostname, this, crypto_config) : |
- new QuicCryptoClientStream(server_hostname, this, crypto_config)); |
+ server_hostname, server_port, this, crypto_config) : |
+ new QuicCryptoClientStream( |
+ server_hostname, server_port, this, crypto_config)); |
connection->set_debug_visitor(&logger_); |
// TODO(rch): pass in full host port proxy pair |