aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ClientInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/ClientInfo.cs22
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 @@
1using System;
2using System.Collections.Generic;
3using System.Net;
4
5namespace 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