view src/ch/ethz/ssh2/packets/PacketIgnore.java @ 369:7a5943a514d5
debug kex error
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Mon, 04 Aug 2014 11:39:58 -0700 (2014-08-04) |
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;
import java.io.IOException;
import ch.ethz.ssh2.PacketTypeException;
/**
* @author Christian Plattner
* @version $Id: PacketIgnore.java 160 2014-05-01 14:30:26Z dkocher@sudo.ch $
*/
public final class PacketIgnore {
private final byte[] payload;
public PacketIgnore(byte[] data) {
TypesWriter tw = new TypesWriter();
tw.writeByte(Packets.SSH_MSG_IGNORE);
if (data != null) {
tw.writeString(data, 0, data.length);
}
else {
tw.writeString("");
}
payload = tw.getBytes();
}
public byte[] getPayload() {
return payload;
}
}