| 41 | #undef IN6_IS_ADDR_UNSPECIFIED |
| 42 | #endif |
| 43 | static inline bool |
| 44 | IN6_IS_ADDR_UNSPECIFIED(in6_addr const *addr) |
| 45 | { |
| 46 | uint64_t const *w = reinterpret_cast<uint64_t const *>(addr); |
| 47 | return 0 == w[0] && 0 == w[1]; |
| 48 | } |
| 49 | #endif |
| 50 | |
| 51 | /* |
no outgoing calls
no test coverage detected