From 48ded2421114c4c87ef3f8005c9f793a5d077cbd Mon Sep 17 00:00:00 2001 From: Mike Lockwood Date: Tue, 10 Jan 2012 14:24:22 -0800 Subject: ganymed-ssh2-build251beta1 Signed-off-by: Mike Lockwood --- .../ethz/ssh2/packets/PacketSessionStartShell.java | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/main/java/ch/ethz/ssh2/packets/PacketSessionStartShell.java (limited to 'src/main/java/ch/ethz/ssh2/packets/PacketSessionStartShell.java') diff --git a/src/main/java/ch/ethz/ssh2/packets/PacketSessionStartShell.java b/src/main/java/ch/ethz/ssh2/packets/PacketSessionStartShell.java new file mode 100644 index 0000000..c4f50d5 --- /dev/null +++ b/src/main/java/ch/ethz/ssh2/packets/PacketSessionStartShell.java @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. + * Please refer to the LICENSE.txt for licensing details. + */ +package ch.ethz.ssh2.packets; + +/** + * PacketSessionStartShell. + * + * @author Christian Plattner + * @version 2.50, 03/15/10 + */ +public class PacketSessionStartShell +{ + byte[] payload; + + public int recipientChannelID; + public boolean wantReply; + + public PacketSessionStartShell(int recipientChannelID, boolean wantReply) + { + this.recipientChannelID = recipientChannelID; + this.wantReply = wantReply; + } + + public byte[] getPayload() + { + if (payload == null) + { + TypesWriter tw = new TypesWriter(); + tw.writeByte(Packets.SSH_MSG_CHANNEL_REQUEST); + tw.writeUINT32(recipientChannelID); + tw.writeString("shell"); + tw.writeBoolean(wantReply); + payload = tw.getBytes(); + } + return payload; + } +} -- cgit v1.2.3