Exemple #1
0
 public HandshakeReq(string version)
 {
     header = new PacketHeader {packetType = PacketType.PKT_HandshakeReq};
     this.version = version;
 }
Exemple #2
0
 public AuthReq(string username, string password)
 {
     header = new PacketHeader {packetType = PacketType.PKT_AuthReq};
     this.username = username;
     this.password = password;
 }