view app/src/main/java/ch/ethz/ssh2/packets/PacketSessionPtyRequest.java @ 474:e5f8d879543f
add fg/bg color setting to global:// section of deployment.connections file
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Sun, 20 Oct 2019 14:08:00 -0700 (2019-10-20) |
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: 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;
}
}