Mercurial > 510Connectbot
view src/ch/ethz/ssh2/packets/PacketSessionExecCommand.java @ 278:d7e088fa2123 ganymed
start conversion from trilead to ganymed
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 18 Jul 2014 16:45:43 -0700 |
parents | 91a31873c42a |
children |
line wrap: on
line source
/* * 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; /** * @author Christian Plattner * @version $Id: PacketSessionExecCommand.java 160 2014-05-01 14:30:26Z dkocher@sudo.ch $ */ public final class PacketSessionExecCommand { private final byte[] payload; public PacketSessionExecCommand(int recipientChannelID, boolean wantReply, String command, String charsetName) throws UnsupportedEncodingException { 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(); } public byte[] getPayload() throws IOException { return payload; } }