| 149 | |
| 150 | #if defined ACE_HAS_CPP11 |
| 151 | size_t NetworkAddress::hash(size_t start_hash) const { |
| 152 | return static_cast<size_t>(OpenDDS::DCPS::one_at_a_time_hash(reinterpret_cast<const uint8_t*>(&inet_addr_), sizeof(inet_addr_), static_cast<uint32_t>(start_hash))); |
| 153 | } |
| 154 | #endif |
| 155 | |
| 156 | bool NetworkAddress::addr_bytes_equal(const NetworkAddress& rhs) const |
no test coverage detected