コード例 #1
0
ファイル: System.cs プロジェクト: bclnet/DroidNet
 public static bool CompareNetAdrBase(Netadr a, Netadr b) => throw new NotImplementedException();
コード例 #2
0
ファイル: System.cs プロジェクト: bclnet/DroidNet
 public static bool IsLANAddress(Netadr a) => throw new NotImplementedException();
コード例 #3
0
ファイル: System.cs プロジェクト: bclnet/DroidNet
 public static string NetAdrToString(Netadr a) => throw new NotImplementedException();
コード例 #4
0
ファイル: System.cs プロジェクト: bclnet/DroidNet
 // 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();
コード例 #5
0
ファイル: System.cs プロジェクト: bclnet/DroidNet
 public void SendPacket(Netadr to, byte[] data, int size) => throw new NotImplementedException();
コード例 #6
0
ファイル: System.cs プロジェクト: bclnet/DroidNet
 public bool GetPacketBlocking(out Netadr from, byte[] data, out int size, int maxSize, int timeout) => throw new NotImplementedException();