Mercurial > 510Connectbot
view src/ch/ethz/ssh2/packets/PacketChannelAuthAgentReq.java @ 426:9b9821808222
Added tag stable-1.9.0-8 for changeset b284b8f9e535
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 11 Nov 2014 10:48:32 -0800 |
parents | 5824a1475be4 |
children |
line wrap: on
line source
package ch.ethz.ssh2.packets; /** * PacketGlobalAuthAgent. * * @author Kenny Root, kenny@the-b.org * @version $Id$ */ public class PacketChannelAuthAgentReq { byte[] payload; public int recipientChannelID; public PacketChannelAuthAgentReq(int recipientChannelID) { this.recipientChannelID = recipientChannelID; } public byte[] getPayload() { if (payload == null) { TypesWriter tw = new TypesWriter(); tw.writeByte(Packets.SSH_MSG_CHANNEL_REQUEST); tw.writeUINT32(recipientChannelID); tw.writeString("auth-agent-req@openssh.com"); tw.writeBoolean(true); // want reply payload = tw.getBytes(); } return payload; } }