aboutsummaryrefslogtreecommitdiff
path: root/osp/impl/quic/quic_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'osp/impl/quic/quic_server.h')
-rw-r--r--osp/impl/quic/quic_server.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/osp/impl/quic/quic_server.h b/osp/impl/quic/quic_server.h
index 31a3bbe8..ad195635 100644
--- a/osp/impl/quic/quic_server.h
+++ b/osp/impl/quic/quic_server.h
@@ -84,15 +84,14 @@ class QuicServer final : public ProtocolConnectionServer,
// 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;
// Maps endpoint addresses to data about connections that haven't successfully
// completed the QUIC handshake.
- std::map<IPEndpoint, ServiceConnectionData, IPEndpointComparator>
- pending_connections_;
+ std::map<IPEndpoint, ServiceConnectionData> pending_connections_;
// Maps endpoint IDs to data about connections that have successfully
// completed the QUIC handshake.