aboutsummaryrefslogtreecommitdiffstats
path: root/sshlib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java
diff options
context:
space:
mode:
Diffstat (limited to 'sshlib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java')
-rw-r--r--sshlib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/sshlib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java b/sshlib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java
new file mode 100644
index 0000000..1e3b558
--- /dev/null
+++ b/sshlib/src/main/java/com/trilead/ssh2/packets/PacketSessionPtyResize.java
@@ -0,0 +1,40 @@
+package com.trilead.ssh2.packets;
+
+public class PacketSessionPtyResize {
+ byte[] payload;
+
+ public int recipientChannelID;
+ public int width;
+ public int height;
+ public int pixelWidth;
+ public int pixelHeight;
+
+ public PacketSessionPtyResize(int recipientChannelID, int width, int height, int pixelWidth, int pixelHeight) {
+ this.recipientChannelID = recipientChannelID;
+ this.width = width;
+ this.height = height;
+ this.pixelWidth = pixelWidth;
+ this.pixelHeight = pixelHeight;
+ }
+
+ public byte[] getPayload()
+ {
+ if (payload == null)
+ {
+ TypesWriter tw = new TypesWriter();
+ tw.writeByte(Packets.SSH_MSG_CHANNEL_REQUEST);
+ tw.writeUINT32(recipientChannelID);
+ tw.writeString("window-change");
+ tw.writeBoolean(false);
+ tw.writeUINT32(width);
+ tw.writeUINT32(height);
+ tw.writeUINT32(pixelWidth);
+ tw.writeUINT32(pixelHeight);
+
+ payload = tw.getBytes();
+ }
+ return payload;
+ }
+}
+
+