view app/src/main/java/ch/ethz/ssh2/packets/PacketSessionPtyRequest.java @ 514:947ea334735d default tip

update copyrights
author Carl Byington <carl@five-ten-sg.com>
date Fri, 10 Feb 2023 19:13:58 -0700
parents d29cce60f393
children
line wrap: on
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;
    }
}