o=s.option(form.Value,"port",_("Service port"),_("The TCP port to listen on."));
o.rmempty=false;
o.default=5000;
o=s.option(form.ListValue,"protocol",_("Protocol"),_("The protocol to listen to."));
o.rmempty=false;
o.value("raw",_("Raw"));
o.value("rawlp",_("Rawlp"));
o.value("telnet",_("Telnet"));
o.value("off",_("Off"));
o.default="raw";
o=s.option(form.Value,"timeout",_("Timeout"),_("The amount of seconds of inactivity before a disconnect occurs.<br/>A value of zero means wait indefinitely."));
o.rmempty=false;
o.default=0;
o=s.option(form.Value,"device",_("Device"),_("The name of the device to connect to.<br/>This must be in the form of /dev/<device>."));
o.rmempty=false;
o.default="/dev/ttyUSB0";
o=s.option(form.ListValue,"baudrate",_("Baud rate"),_("The speed the device port should operate at."));