Brunet.Security.PeerSec.PeerSecOverlord.NoSuchSA C# (CSharp) Метод

NoSuchSA() защищенный Метод

After a restart of the Security system, one guy may think we still have an association and there will be no way for him to know that our side is broken, unless we notify him as such. We notify him by sending this packet. How he deals with that is up to him.
protected NoSuchSA ( int spi, ISender remote_sender ) : void
spi int
remote_sender ISender
Результат void
    protected void NoSuchSA(int spi, ISender remote_sender) {
      SecurityControlMessage scm_reply = new SecurityControlMessage();
      scm_reply.Version = Version;
      scm_reply.SPI = spi;
      scm_reply.Type = SecurityControlMessage.MessageType.NoSuchSA;
      ICopyable to_send = new CopyList(Security, SecureControl, scm_reply.Packet);
      remote_sender.Send(to_send);
    }