public bool Start(string IP, ushort port) { if (NetworkEngine.Start(IP, port) == false) { return(false); } return(true); }
public bool Start(IPAddress IP, ushort port) { if (NetworkEngine.Start(IP.ToString(), port) == false) { return(false); } return(true); }
public bool Start(ushort port) { if (NetworkEngine.Start("0.0.0.0", port) == false) { return(false); } return(true); }