Check if port is well-known port
port - The port number to check Returns true if port is well-known (1-1023)
port
static bool isWellKnownPort(int port) { return port >= 1 && port <= 1023; }