mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Moved packet structures to common.
This commit is contained in:
27
FFXIVClassic Proxy Server/DataObjects/Session.cs
Normal file
27
FFXIVClassic Proxy Server/DataObjects/Session.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net.Sockets;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FFXIVClassic_World_Server.DataObjects
|
||||
{
|
||||
class Session
|
||||
{
|
||||
public enum Channel {ZONE, CHAT};
|
||||
|
||||
public readonly ulong sessionId;
|
||||
public readonly ClientConnection clientSocket;
|
||||
public readonly Channel type;
|
||||
public ZoneServer routing1, routing2;
|
||||
|
||||
public Session(ulong sessionId, ClientConnection socket, Channel type)
|
||||
{
|
||||
this.sessionId = sessionId;
|
||||
this.clientSocket = socket;
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user