()
| 678 | public int getId(){ return id; } |
| 679 | |
| 680 | protected void sendOpenConfirmation() throws Exception{ |
| 681 | Buffer buf=new Buffer(100); |
| 682 | Packet packet=new Packet(buf); |
| 683 | packet.reset(); |
| 684 | buf.putByte((byte)SSH_MSG_CHANNEL_OPEN_CONFIRMATION); |
| 685 | buf.putInt(getRecipient()); |
| 686 | buf.putInt(id); |
| 687 | buf.putInt(lwsize); |
| 688 | buf.putInt(lmpsize); |
| 689 | getSession().write(packet); |
| 690 | } |
| 691 | |
| 692 | protected void sendOpenFailure(int reasoncode){ |
| 693 | try{ |
no test coverage detected