MCPcopy Create free account
hub / github.com/TigerVNC/tigervnc / sendOpenConfirmation

Method sendOpenConfirmation

java/com/jcraft/jsch/Channel.java:680–690  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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{

Callers 3

runMethod · 0.80
runMethod · 0.80
runMethod · 0.80

Calls 6

resetMethod · 0.95
putByteMethod · 0.95
putIntMethod · 0.95
getRecipientMethod · 0.95
getSessionMethod · 0.95
writeMethod · 0.65

Tested by

no test coverage detected