| 88 | |
| 89 | template <class T, class TElem> |
| 90 | inline bool IsInSet(const T& c, const TElem& e) { |
| 91 | return Find(c.begin(), c.end(), e) != c.end(); |
| 92 | } |
| 93 | |
| 94 | bool IsLocalIPv4(ui32 ip) { |
| 95 | return IsInSet(LocalHostIPList[IPv4], ip); |
no test coverage detected