From 46f914fe4d34632de76f4dd818304c13a8dc5335 Mon Sep 17 00:00:00 2001 From: Eveldee Date: Sun, 24 Mar 2019 12:50:03 +0100 Subject: [PATCH] Separate Client and Server port --- PlantBox.Shared/Communication/Connection.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; } }