view app/src/main/java/ch/ethz/ssh2/packets/PacketSessionStartShell.java @ 479:3a83f40439d7
only bind to the MonitorService for localhost monitor connections
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Mon, 28 Oct 2019 13:49:01 -0700 (2019-10-28) |
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;
}
}