We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e513d70 commit 1cfe1bbCopy full SHA for 1cfe1bb
lib60870/CS104/ClientConnection.cs
@@ -134,7 +134,7 @@ private struct SentASDU
134
/// <returns>
135
/// The ASDU queue containing low-priority ASDUs.
136
/// </returns>
137
- internal ASDUQueue GetASDUQueue()
+ public ASDUQueue GetASDUQueue()
138
{
139
return lowPrioQueue;
140
}
lib60870/CS104/Server.cs
@@ -894,6 +894,11 @@ public void EnqueueASDU(ASDU asdu)
894
895
896
897
+ public IEnumerable<ClientConnection> GetAllOpenConnections()
898
+ {
899
+ return allOpenConnections;
900
+ }
901
+
902
internal void CallServerStateEventHandler(ServerStateEvent e)
903
904
if (serverStateEventHandler != null)
0 commit comments