Chromium Code Reviews| Index: net/tools/quic/quic_client_session.cc |
| diff --git a/net/tools/quic/quic_client_session.cc b/net/tools/quic/quic_client_session.cc |
| index a2d69498346732272cf741c81537bc92bd676360..75af6f5e421a06c1e4f340a642cef9ecd7d10c2b 100644 |
| --- a/net/tools/quic/quic_client_session.cc |
| +++ b/net/tools/quic/quic_client_session.cc |
| @@ -19,7 +19,8 @@ QuicClientSession::QuicClientSession( |
| QuicConnection* connection, |
| QuicCryptoClientConfig* crypto_config) |
| : QuicSession(connection, config), |
| - crypto_stream_(server_hostname, this, crypto_config) { |
| + // Defaulting server_port to 9999. |
|
ramant (doing other things)
2014/03/10 20:31:46
We are not passing port for QuiClientSession and t
ramant (doing other things)
2014/03/11 00:48:50
Using the port from connection.
|
| + crypto_stream_(server_hostname, 9999, this, crypto_config) { |
| } |
| QuicClientSession::~QuicClientSession() { |