| 98 | } |
| 99 | |
| 100 | int SocketMapInsert(const SocketMapKey& key, SocketId* id, |
| 101 | SocketOptions& opt) { |
| 102 | return get_or_new_client_side_socket_map()->Insert(key, id, opt); |
| 103 | } |
| 104 | |
| 105 | int SocketMapFind(const SocketMapKey& key, SocketId* id) { |
| 106 | SocketMap* m = get_client_side_socket_map(); |
nothing calls this directly
no test coverage detected