view app/src/main/java/ch/ethz/ssh2/packets/PacketSessionExecCommand.java @ 444:5a74f1b7c1db
migrate from Eclipse to Android Studio
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Thu, 03 Dec 2015 12:33:34 -0800 (2015-12-03) |
parents |
d29cce60f393 |
children |
|
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;
}
}