| Index: net/tools/quic/quic_client_bin.cc
|
| diff --git a/net/tools/quic/quic_client_bin.cc b/net/tools/quic/quic_client_bin.cc
|
| index 5591b8798b76fe744bfef7c791e0b1cce5f490cf..2f8cfac17364600941509ff45b4b11e5ce724ec6 100644
|
| --- a/net/tools/quic/quic_client_bin.cc
|
| +++ b/net/tools/quic/quic_client_bin.cc
|
| @@ -59,8 +59,9 @@ int main(int argc, char *argv[]) {
|
| net::IPAddressNumber addr;
|
| CHECK(net::ParseIPLiteralToNumber(FLAGS_address, &addr));
|
| // TODO(rjshade): Set version on command line.
|
| - net::tools::QuicClient client(net::IPEndPoint(addr, FLAGS_port),
|
| - FLAGS_hostname, net::QuicVersionMax(), true);
|
| + net::tools::QuicClient client(
|
| + net::IPEndPoint(addr, FLAGS_port), FLAGS_hostname,
|
| + net::QuicSupportedVersions(), true);
|
|
|
| client.Initialize();
|
|
|
|
|