MCPcopy Create free account
hub / github.com/catboost/catboost / TIPv6Addr

Class TIPv6Addr

library/cpp/netliba/v6/udp_socket.cpp:25–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 }

Callers 2

InitLocalIPListFunction · 0.70
IsLocalIPv6Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected