コード例 #1
0
ファイル: AgentServer.java プロジェクト: Connecty/mina-sshd
 protected void reply(Buffer buf) throws IOException {
   int result = Socket.send(socket, buf.array(), buf.rpos(), buf.available());
   if (result < Status.APR_SUCCESS) {
     throwException(result);
   }
 }