From b7acbd2d6232f77f6a682b1966acd37e61b9b7b3 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 26 Nov 2007 15:50:22 +0000 Subject: [PATCH] ports > 254 accepted --- PLC/PCUProtocolTypes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PLC/PCUProtocolTypes.py b/PLC/PCUProtocolTypes.py index 30ef459..9475d31 100644 --- a/PLC/PCUProtocolTypes.py +++ b/PLC/PCUProtocolTypes.py @@ -24,8 +24,8 @@ class PCUProtocolType(Row): fields = { 'pcu_protocol_type_id': Parameter(int, "PCU protocol type identifier"), 'pcu_type_id': Parameter(int, "PCU type identifier"), - 'port': Parameter(int, "PCU port", max = 254), - 'protocol': Parameter(str, "Protocol", max = 254), + 'port': Parameter(int, "PCU port"), + 'protocol': Parameter(str, "Protocol"), 'supported': Parameter(bool, "Is the port/protocol supported by PLC") } -- 2.43.0