isWellKnownPort static method

bool isWellKnownPort(
  1. int port
)

Check if port is well-known port

port - The port number to check Returns true if port is well-known (1-1023)

Implementation

static bool isWellKnownPort(int port) {
  return port >= 1 && port <= 1023;
}