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

Method request

java/com/jcraft/jsch/Request.java:36–42  ·  view source on GitHub ↗
(Session session, Channel channel)

Source from the content-addressed store, hash-verified

34 private Session session=null;
35 private Channel channel=null;
36 void request(Session session, Channel channel) throws Exception{
37 this.session=session;
38 this.channel=channel;
39 if(channel.connectTimeout>0){
40 setReply(true);
41 }
42 }
43 boolean waitForReply(){ return reply; }
44 void setReply(boolean reply){ this.reply=reply; }
45 void write(Packet packet) throws Exception{

Callers 2

startMethod · 0.95
sendRequestsMethod · 0.95

Calls 1

setReplyMethod · 0.95

Tested by

no test coverage detected