diff options
Diffstat (limited to 'OpenSim/Framework/ClientInfo.cs')
-rw-r--r-- | OpenSim/Framework/ClientInfo.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/OpenSim/Framework/ClientInfo.cs b/OpenSim/Framework/ClientInfo.cs new file mode 100644 index 0000000..099449d --- /dev/null +++ b/OpenSim/Framework/ClientInfo.cs | |||
@@ -0,0 +1,22 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Net; | ||
4 | |||
5 | namespace OpenSim.Framework | ||
6 | { | ||
7 | [Serializable] | ||
8 | public class ClientInfo | ||
9 | { | ||
10 | public sAgentCircuitData agentcircuit; | ||
11 | |||
12 | public Dictionary<uint, byte[]> needAck; | ||
13 | |||
14 | public List<byte[]> out_packets; | ||
15 | public Dictionary<uint, uint> pendingAcks; | ||
16 | public EndPoint proxyEP; | ||
17 | |||
18 | public uint sequence; | ||
19 | public byte[] usecircuit; | ||
20 | public EndPoint userEP; | ||
21 | } | ||
22 | } \ No newline at end of file | ||