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