* @brief Returns true when port is within the valid [1, 65535] TCP range. */
| 30 | * @brief Returns true when port is within the valid [1, 65535] TCP range. |
| 31 | */ |
| 32 | [[nodiscard]] static bool portIsValid(int port) |
| 33 | { |
| 34 | return port >= 1 && port <= 65535; |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * @brief Validates that an integer falls within [0, modeCount). |
no outgoing calls
no test coverage detected