Beispiel #1
0
 public static bool CompareNetAdrBase(Netadr a, Netadr b) => throw new NotImplementedException();
Beispiel #2
0
 public static bool IsLANAddress(Netadr a) => throw new NotImplementedException();
Beispiel #3
0
 public static string NetAdrToString(Netadr a) => throw new NotImplementedException();
Beispiel #4
0
 // 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();
Beispiel #5
0
 public void SendPacket(Netadr to, byte[] data, int size) => throw new NotImplementedException();
Beispiel #6
0
 public bool GetPacketBlocking(out Netadr from, byte[] data, out int size, int maxSize, int timeout) => throw new NotImplementedException();