diff options
author | lbsa71 | 2008-07-08 11:25:18 +0000 |
---|---|---|
committer | lbsa71 | 2008-07-08 11:25:18 +0000 |
commit | d9b802bb26ee659a68270ac05ea0406389afc883 (patch) | |
tree | 54a53c343d14e15a6236a0c36daa228f07ae57b6 /OpenSim/Framework/ClientInfo.cs | |
parent | RegionInfo.configMember can be null for dynamically created regions (diff) | |
download | opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.zip opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.gz opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.bz2 opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.xz |
* Split out various classes from IClientAPI into their own files, in accordance with code standards
Diffstat (limited to '')
-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 | ||