Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TcpValidationHelpers.cs
Go to the documentation of this file.
1namespace System.Net;
2
3internal static class TcpValidationHelpers
4{
5 public static bool ValidatePortNumber(int port)
6 {
7 if (port >= 0)
8 {
9 return port <= 65535;
10 }
11 return false;
12 }
13}
static bool ValidatePortNumber(int port)