isRegisteredPort static method

bool isRegisteredPort(
  1. int port
)

Check if port is registered port

port - The port number to check Returns true if port is registered (1024-49151)

Implementation

static bool isRegisteredPort(int port) {
  return port >= 1024 && port <= 49151;
}