HomeSort by relevance Sort by last modified time
    Searched defs:recipientChannelID (Results 1 - 8 of 8) sorted by null

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketSessionStartShell.java 17 public int recipientChannelID;
20 public PacketSessionStartShell(int recipientChannelID, boolean wantReply)
22 this.recipientChannelID = recipientChannelID;
32 tw.writeUINT32(recipientChannelID);
PacketChannelOpenConfirmation.java 19 public int recipientChannelID;
24 public PacketChannelOpenConfirmation(int recipientChannelID, int senderChannelID, int initialWindowSize,
27 this.recipientChannelID = recipientChannelID;
47 recipientChannelID = tr.readUINT32();
62 tw.writeUINT32(recipientChannelID);
PacketChannelOpenFailure.java 19 public int recipientChannelID;
24 public PacketChannelOpenFailure(int recipientChannelID, int reasonCode, String description,
27 this.recipientChannelID = recipientChannelID;
47 recipientChannelID = tr.readUINT32();
62 tw.writeUINT32(recipientChannelID);
PacketChannelWindowAdjust.java 19 public int recipientChannelID;
22 public PacketChannelWindowAdjust(int recipientChannelID, int windowChange)
24 this.recipientChannelID = recipientChannelID;
42 recipientChannelID = tr.readUINT32();
55 tw.writeUINT32(recipientChannelID);
PacketSessionExecCommand.java 20 public int recipientChannelID;
24 public PacketSessionExecCommand(int recipientChannelID, boolean wantReply, String command)
26 this.recipientChannelID = recipientChannelID;
42 tw.writeUINT32(recipientChannelID);
PacketSessionSubsystemRequest.java 17 public int recipientChannelID;
21 public PacketSessionSubsystemRequest(int recipientChannelID, boolean wantReply, String subsystem)
23 this.recipientChannelID = recipientChannelID;
34 tw.writeUINT32(recipientChannelID);
PacketSessionX11Request.java 17 public int recipientChannelID;
25 public PacketSessionX11Request(int recipientChannelID, boolean wantReply, boolean singleConnection,
28 this.recipientChannelID = recipientChannelID;
43 tw.writeUINT32(recipientChannelID);
PacketSessionPtyRequest.java 17 public int recipientChannelID;
26 public PacketSessionPtyRequest(int recipientChannelID, boolean wantReply, String term,
30 this.recipientChannelID = recipientChannelID;
46 tw.writeUINT32(recipientChannelID);

Completed in 45 milliseconds