示例#1
0
 public static void Enqueue(Packet P)
 {
     if (SendList != null && P != null)
     {
         SendList.Enqueue(P);
     }
 }
示例#2
0
 public void QueuePacket(Packet P)
 {
     if (P == null || SendList == null)
     {
         return;
     }
     SendList.Enqueue(P);
 }