Пример #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="code">The encryption for messages.</param>
 /// <param name="p">The port to use with the socket.</param>
 public ASTPConversation(AbsASTPCypher code, int p)
 {
     this.cypher    = code;
     this.messages  = new ConcurrentQueue <string>();
     this.responses = new ConcurrentQueue <string>();
     port           = p;
 }
Пример #2
0
 public ASTPClient()
 {
     cypher = null;
 }