Creates a TCP/IP socket server instance.
encapsulated function constructor import Modelica; extends Modelica.Icons.Function; import Modelica_DeviceDrivers.Communication.TCPIPServer; input Integer port "The listening port of the server"; input Integer maxClients = 1 "Maximum number of clients that can connect simultaneously"; input Boolean useNonblockingMode = true "=true, use non-blocking TCP/IP socket, otherwise receiving and sending will block"; output TCPIPServer tcpipserver; end constructor;