mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
* Split out various classes from IClientAPI into their own files, in accordance with code standards
This commit is contained in:
22
OpenSim/Framework/ClientInfo.cs
Normal file
22
OpenSim/Framework/ClientInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Net;
|
||||
|
||||
namespace OpenSim.Framework
|
||||
{
|
||||
[Serializable]
|
||||
public class ClientInfo
|
||||
{
|
||||
public sAgentCircuitData agentcircuit;
|
||||
|
||||
public Dictionary<uint, byte[]> needAck;
|
||||
|
||||
public List<byte[]> out_packets;
|
||||
public Dictionary<uint, uint> pendingAcks;
|
||||
public EndPoint proxyEP;
|
||||
|
||||
public uint sequence;
|
||||
public byte[] usecircuit;
|
||||
public EndPoint userEP;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user