| 23 | }; |
| 24 | |
| 25 | struct TIPv6Addr { |
| 26 | ui64 Network, Interface; |
| 27 | |
| 28 | TIPv6Addr() { |
| 29 | Zero(*this); |
| 30 | } |
| 31 | TIPv6Addr(ui64 n, ui64 i) |
| 32 | : Network(n) |
| 33 | , Interface(i) |
| 34 | { |
| 35 | } |
| 36 | }; |
| 37 | inline bool operator==(const TIPv6Addr& a, const TIPv6Addr& b) { |
| 38 | return a.Interface == b.Interface && a.Network == b.Network; |
| 39 | } |
no outgoing calls
no test coverage detected