view app/src/main/java/ch/ethz/ssh2/packets/PacketSessionStartShell.java @ 455:3f24984b435f
use version as part of final filename
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Thu, 08 Nov 2018 11:06:22 -0800 (2018-11-08) |
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;
/**
* @author Christian Plattner
* @version $Id: PacketSessionStartShell.java 160 2014-05-01 14:30:26Z dkocher@sudo.ch $
*/
public final class PacketSessionStartShell {
private final byte[] payload;
public PacketSessionStartShell(int recipientChannelID, boolean wantReply) {
TypesWriter tw = new TypesWriter();
tw.writeByte(Packets.SSH_MSG_CHANNEL_REQUEST);
tw.writeUINT32(recipientChannelID);
tw.writeString("shell");
tw.writeBoolean(wantReply);
payload = tw.getBytes();
}
public byte[] getPayload() {
return payload;
}
}