public static bool CompareNetAdrBase(Netadr a, Netadr b) => throw new NotImplementedException();
public static bool IsLANAddress(Netadr a) => throw new NotImplementedException();
public static string NetAdrToString(Netadr a) => throw new NotImplementedException();
// parses the port number, can also do DNS resolve if you ask for it. // NOTE: DNS resolve is a slow/blocking call, think before you use (could be exploited for server DoS) public static bool StringToNetAdr(string s, out Netadr a, bool doDNSResolve) => throw new NotImplementedException();
public void SendPacket(Netadr to, byte[] data, int size) => throw new NotImplementedException();
public bool GetPacketBlocking(out Netadr from, byte[] data, out int size, int maxSize, int timeout) => throw new NotImplementedException();