| 213 | } |
| 214 | |
| 215 | bool equals(const INetworkEndpoint& other) const override |
| 216 | { |
| 217 | auto& other2 = *static_cast<const NetworkEndpoint*>(&other); |
| 218 | return compareSockets(&_address, &other2._address) == 0; |
| 219 | } |
| 220 | |
| 221 | private: |
| 222 | #if defined(__MINGW32__) |
no outgoing calls
no test coverage detected