protected static HandshakeResponse NewHandshakeResponse(HandshakeMatch match, MD5 serverHash, string serverProtocol = null)
 {
     return(new HandshakeResponse()
     {
         match = match,
         serverHash = serverHash,
         serverProtocol = serverProtocol,
         meta = EMPTY_META
     });
 }
Example #2
0
 public HandshakeRejection(HandshakeMatch match)
 {
     this.match = match;
 }