view src/ch/ethz/ssh2/packets/PacketSessionPtyRequest.java @ 412:057854c77217
wait for monitor socket to be created
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Fri, 24 Oct 2014 17:49:50 -0700 (2014-10-25) |
parents |
071eccdff8ea |
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: PacketSessionPtyRequest.java 160 2014-05-01 14:30:26Z dkocher@sudo.ch $
*/
public final class PacketSessionPtyRequest {
private final byte[] payload;
public PacketSessionPtyRequest(int recipientChannelID, boolean wantReply, String term,
int character_width, int character_height, int pixel_width, int pixel_height,
byte[] terminal_modes) {
TypesWriter tw = new TypesWriter();
tw.writeByte(Packets.SSH_MSG_CHANNEL_REQUEST);
tw.writeUINT32(recipientChannelID);
tw.writeString("pty-req");
tw.writeBoolean(wantReply);
tw.writeString(term);
tw.writeUINT32(character_width);
tw.writeUINT32(character_height);
tw.writeUINT32(pixel_width);
tw.writeUINT32(pixel_height);
tw.writeString(terminal_modes, 0, terminal_modes.length);
payload = tw.getBytes();
}
public byte[] getPayload() {
return payload;
}
}