Searched defs:recipientChannelID (Results 1 - 8 of 8) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPacketSessionStartShell.java17 public int recipientChannelID; field in class:PacketSessionStartShell
20 public PacketSessionStartShell(int recipientChannelID, boolean wantReply) argument
22 this.recipientChannelID = recipientChannelID;
32 tw.writeUINT32(recipientChannelID);
H A DPacketSessionSubsystemRequest.java17 public int recipientChannelID; field in class:PacketSessionSubsystemRequest
21 public PacketSessionSubsystemRequest(int recipientChannelID, boolean wantReply, String subsystem) argument
23 this.recipientChannelID = recipientChannelID;
34 tw.writeUINT32(recipientChannelID);
H A DPacketChannelOpenConfirmation.java19 public int recipientChannelID; field in class:PacketChannelOpenConfirmation
24 public PacketChannelOpenConfirmation(int recipientChannelID, int senderChannelID, int initialWindowSize, argument
27 this.recipientChannelID = recipientChannelID;
47 recipientChannelID = tr.readUINT32();
62 tw.writeUINT32(recipientChannelID);
H A DPacketChannelOpenFailure.java19 public int recipientChannelID; field in class:PacketChannelOpenFailure
24 public PacketChannelOpenFailure(int recipientChannelID, int reasonCode, String description, argument
27 this.recipientChannelID = recipientChannelID;
47 recipientChannelID = tr.readUINT32();
62 tw.writeUINT32(recipientChannelID);
H A DPacketChannelWindowAdjust.java19 public int recipientChannelID; field in class:PacketChannelWindowAdjust
22 public PacketChannelWindowAdjust(int recipientChannelID, int windowChange) argument
24 this.recipientChannelID = recipientChannelID;
42 recipientChannelID = tr.readUINT32();
55 tw.writeUINT32(recipientChannelID);
H A DPacketSessionExecCommand.java20 public int recipientChannelID; field in class:PacketSessionExecCommand
24 public PacketSessionExecCommand(int recipientChannelID, boolean wantReply, String command) argument
26 this.recipientChannelID = recipientChannelID;
42 tw.writeUINT32(recipientChannelID);
H A DPacketSessionPtyRequest.java17 public int recipientChannelID; field in class:PacketSessionPtyRequest
26 public PacketSessionPtyRequest(int recipientChannelID, boolean wantReply, String term, argument
30 this.recipientChannelID = recipientChannelID;
46 tw.writeUINT32(recipientChannelID);
H A DPacketSessionX11Request.java17 public int recipientChannelID; field in class:PacketSessionX11Request
25 public PacketSessionX11Request(int recipientChannelID, boolean wantReply, boolean singleConnection, argument
28 this.recipientChannelID = recipientChannelID;
43 tw.writeUINT32(recipientChannelID);

Completed in 108 milliseconds