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 --- .../ssh2/packets/PacketSessionExecCommand.java | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/main/java/ch/ethz/ssh2/packets/PacketSessionExecCommand.java (limited to 'src/main/java/ch/ethz/ssh2/packets/PacketSessionExecCommand.java') diff --git a/src/main/java/ch/ethz/ssh2/packets/PacketSessionExecCommand.java b/src/main/java/ch/ethz/ssh2/packets/PacketSessionExecCommand.java new file mode 100644 index 0000000..b517f9a --- /dev/null +++ b/src/main/java/ch/ethz/ssh2/packets/PacketSessionExecCommand.java @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. + * Please refer to the LICENSE.txt for licensing details. + */ +package ch.ethz.ssh2.packets; + +import java.io.IOException; +import java.io.UnsupportedEncodingException; + +/** + * PacketSessionExecCommand. + * + * @author Christian Plattner + * @version $Id: PacketSessionExecCommand.java 5 2011-05-27 12:59:54Z dkocher@sudo.ch $ + */ +public class PacketSessionExecCommand +{ + byte[] payload; + + public int recipientChannelID; + public boolean wantReply; + public String command; + + public PacketSessionExecCommand(int recipientChannelID, boolean wantReply, String command) + { + this.recipientChannelID = recipientChannelID; + this.wantReply = wantReply; + this.command = command; + } + + public byte[] getPayload() throws IOException + { + return this.getPayload(null); + } + + public byte[] getPayload(String charsetName) throws UnsupportedEncodingException + { + if (payload == null) + { + TypesWriter tw = new TypesWriter(); + tw.writeByte(Packets.SSH_MSG_CHANNEL_REQUEST); + tw.writeUINT32(recipientChannelID); + tw.writeString("exec"); + tw.writeBoolean(wantReply); + tw.writeString(command, charsetName); + payload = tw.getBytes(); + } + return payload; + } +} -- cgit v1.2.3