diff --git a/PlantBox.Shared/Communication/Connection.cs b/PlantBox.Shared/Communication/Connection.cs index 10641c9..2240b52 100644 --- a/PlantBox.Shared/Communication/Connection.cs +++ b/PlantBox.Shared/Communication/Connection.cs @@ -25,8 +25,12 @@ namespace PlantBox.Shared.Communication // TCP /// + /// Port used by the broker to accept servers + /// + public const int TCP_SERVER_PORT = 1402; + /// /// Port used by the broker to accept clients /// - public const int TCP_PORT = 1402; + public const int TCP_CLIENT_PORT = 1403; } }