diff options
Diffstat (limited to 'OpenSim/Framework/ClientManager.cs')
-rw-r--r-- | OpenSim/Framework/ClientManager.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Framework/ClientManager.cs b/OpenSim/Framework/ClientManager.cs index 85dafef..091f308 100644 --- a/OpenSim/Framework/ClientManager.cs +++ b/OpenSim/Framework/ClientManager.cs | |||
@@ -88,7 +88,12 @@ namespace OpenSim.Framework | |||
88 | } | 88 | } |
89 | } | 89 | } |
90 | 90 | ||
91 | public void InPacket(uint circuitCode, Packet packet) | 91 | /// <summary> |
92 | /// Pass incoming packet to client. | ||
93 | /// </summary> | ||
94 | /// <param name="circuitCode">uint identifying the connection/client.</param> | ||
95 | /// <param name="packet">object containing the packet.</param> | ||
96 | public void InPacket(uint circuitCode, object packet) | ||
92 | { | 97 | { |
93 | IClientAPI client; | 98 | IClientAPI client; |
94 | bool tryGetRet = false; | 99 | bool tryGetRet = false; |