Beispiel #1
0
        void PacketProcessor(Client client, byte[] buffer, int length)
        {
            int type = BitConverter.ToInt16(buffer, 2);

            PacketLogic.Process(client, buffer, Opt);
        }
Beispiel #2
0
 void m_auth_OnRead(Client client, byte[] buffer, int length)
 {
     //TODO: Packet Response Logic
     PacketLogic.Process(client, buffer);
 }