aboutsummaryrefslogtreecommitdiff
path: root/osp/impl/quic/quic_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'osp/impl/quic/quic_client.h')
-rw-r--r--osp/impl/quic/quic_client.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/osp/impl/quic/quic_client.h b/osp/impl/quic/quic_client.h
index 7e37267d..548cbff5 100644
--- a/osp/impl/quic/quic_client.h
+++ b/osp/impl/quic/quic_client.h
@@ -103,7 +103,7 @@ class QuicClient final : public ProtocolConnectionClient,
// Maps an IPEndpoint to a generated endpoint ID. This is used to insulate
// callers from post-handshake changes to a connections actual peer endpoint.
- std::map<IPEndpoint, uint64_t, IPEndpointComparator> endpoint_map_;
+ std::map<IPEndpoint, uint64_t> endpoint_map_;
// Value that will be used for the next new endpoint in a Connect call.
uint64_t next_endpoint_id_ = 0;
@@ -119,8 +119,7 @@ class QuicClient final : public ProtocolConnectionClient,
// Maps endpoint addresses to data about connections that haven't successfully
// completed the QUIC handshake.
- std::map<IPEndpoint, PendingConnectionData, IPEndpointComparator>
- pending_connections_;
+ std::map<IPEndpoint, PendingConnectionData> pending_connections_;
// Maps endpoint IDs to data about connections that have successfully
// completed the QUIC handshake.