コード例 #1
0
ファイル: Sender.cs プロジェクト: apolol92/SmartTransfer
        internal void send(Command responseCommand, Socket currentClient)
        {
            SenderAssistant senderAssistent = new SenderAssistant();

            senderAssistent.send(Crypto.Encrypt(responseCommand.toByteArr(), SmartTransferServer.SERVER_PW), currentClient);
            currentClient.Close();
        }
コード例 #2
0
ファイル: Sender.cs プロジェクト: apolol92/SmartTransfer
 internal void send(Command responseCommand, Socket currentClient)
 {
     SenderAssistant senderAssistent = new SenderAssistant();
     senderAssistent.send(Crypto.Encrypt(responseCommand.toByteArr(),SmartTransferServer.SERVER_PW), currentClient);
     currentClient.Close();
 }