コード例 #1
0
ファイル: RemotePeer.cs プロジェクト: rincewound/PikeMQ
        public virtual void SendConnectionReply(ConnectionAttemptStatus status)
        {
            FrameBuilder theBuilder = new FrameBuilder();

            theBuilder.WriteByte((byte)status);

            socket.Send(theBuilder.Build(FrameType.ConReply));
        }
コード例 #2
0
 public void SendConnectionReply(ConnectionAttemptStatus status)
 {
     //throw new NotImplementedException();
 }