cosmetics
parent
c99014991b
commit
05c77f9342
|
@ -13474,26 +13474,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Packet handling method.
|
/// Packet handling method.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public PacketMethod method { get; set; }
|
public PacketMethod method;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Should this packet be handled asynchronously?
|
/// Should this packet be handled asynchronously?
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool Async { get; set; }
|
public bool Async;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class AsyncPacketProcess
|
|
||||||
{
|
|
||||||
public readonly Packet Pack = null;
|
|
||||||
public readonly PacketMethod Method = null;
|
|
||||||
public AsyncPacketProcess(PacketMethod pMethod, Packet pPack)
|
|
||||||
{
|
|
||||||
Method = pMethod;
|
|
||||||
Pack = pPack;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages)
|
public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages)
|
||||||
{
|
{
|
||||||
AvatarInterestsReplyPacket packet = (AvatarInterestsReplyPacket)PacketPool.Instance.GetPacket(PacketType.AvatarInterestsReply);
|
AvatarInterestsReplyPacket packet = (AvatarInterestsReplyPacket)PacketPool.Instance.GetPacket(PacketType.AvatarInterestsReply);
|
||||||
|
|
Loading…
Reference in New Issue