add more helper methods

This commit is contained in:
2024-08-22 14:38:15 +02:00
parent 519c292a1f
commit ab268e6584
4 changed files with 13 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ namespace Pilz.Net;
public abstract class ConnectionManagerBase(int port)
{
private const int HEADER_LENGTH = 12;
private bool listening = false;
private readonly Dictionary<int, Dictionary<int, byte[]>> dicData = [];