comparison src/ch/ethz/ssh2/packets/PacketChannelWindowAdjust.java @ 273:91a31873c42a ganymed

start conversion from trilead to ganymed
author Carl Byington <carl@five-ten-sg.com>
date Fri, 18 Jul 2014 11:21:46 -0700
parents
children 071eccdff8ea
comparison
equal deleted inserted replaced
272:ce2f4e397703 273:91a31873c42a
1 /*
2 * Copyright (c) 2006-2011 Christian Plattner. All rights reserved.
3 * Please refer to the LICENSE.txt for licensing details.
4 */
5 package ch.ethz.ssh2.packets;
6
7 import java.io.IOException;
8
9 import ch.ethz.ssh2.PacketFormatException;
10
11 /**
12 * @author Christian Plattner
13 * @version $Id: PacketChannelWindowAdjust.java 160 2014-05-01 14:30:26Z dkocher@sudo.ch $
14 */
15 public final class PacketChannelWindowAdjust {
16
17 private final byte[] payload;
18
19 public PacketChannelWindowAdjust(int recipientChannelID, int windowChange) {
20 TypesWriter tw = new TypesWriter();
21 tw.writeByte(Packets.SSH_MSG_CHANNEL_WINDOW_ADJUST);
22 tw.writeUINT32(recipientChannelID);
23 tw.writeUINT32(windowChange);
24 payload = tw.getBytes();
25 }
26
27 public PacketChannelWindowAdjust(byte payload[]) throws IOException {
28 this.payload = payload;
29
30 TypesReader tr = new TypesReader(payload);
31
32 int packet_type = tr.readByte();
33
34 if(packet_type != Packets.SSH_MSG_CHANNEL_WINDOW_ADJUST) {
35 throw new IOException(
36 "This is not a SSH_MSG_CHANNEL_WINDOW_ADJUST! ("
37 + packet_type + ")"
38 );
39 }
40
41 int recipientChannelID = tr.readUINT32();
42 int windowChange = tr.readUINT32();
43
44 if(tr.remain() != 0) {
45 throw new PacketFormatException(String.format("Padding in %s", Packets.getMessageName(packet_type)));
46 }
47 }
48
49 public byte[] getPayload() {
50 return payload;
51 }
52 }