Separate Client and Server port

This commit is contained in:
2019-03-24 12:50:03 +01:00
parent fa8608b44b
commit 46f914fe4d

View File

@@ -25,8 +25,12 @@ namespace PlantBox.Shared.Communication
// TCP
/// <summary>
/// Port used by the broker to accept servers
/// </summary>
public const int TCP_SERVER_PORT = 1402;
/// <summary>
/// Port used by the broker to accept clients
/// </summary>
public const int TCP_PORT = 1402;
public const int TCP_CLIENT_PORT = 1403;
}
}