| 169 | } |
| 170 | |
| 171 | Channel::~Channel() { |
| 172 | if (_server_id != INVALID_SOCKET_ID) { |
| 173 | const ChannelSignature sig = ComputeChannelSignature(_options); |
| 174 | SocketMapRemove(SocketMapKey(_server_address, sig)); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | |
| 179 | int Channel::InitChannelOptions(const ChannelOptions* options) { |
nothing calls this directly
no test coverage detected