aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/trilead/ssh2/packets/PacketUserauthRequestInteractive.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/trilead/ssh2/packets/PacketUserauthRequestInteractive.java')
-rw-r--r--src/com/trilead/ssh2/packets/PacketUserauthRequestInteractive.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/com/trilead/ssh2/packets/PacketUserauthRequestInteractive.java b/src/com/trilead/ssh2/packets/PacketUserauthRequestInteractive.java
deleted file mode 100644
index 83e9f49..0000000
--- a/src/com/trilead/ssh2/packets/PacketUserauthRequestInteractive.java
+++ /dev/null
@@ -1,42 +0,0 @@
-
-package com.trilead.ssh2.packets;
-
-/**
- * PacketUserauthRequestInteractive.
- *
- * @author Christian Plattner, plattner@trilead.com
- * @version $Id: PacketUserauthRequestInteractive.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
- */
-public class PacketUserauthRequestInteractive
-{
- byte[] payload;
-
- String userName;
- String serviceName;
- String[] submethods;
-
- public PacketUserauthRequestInteractive(String serviceName, String user, String[] submethods)
- {
- this.serviceName = serviceName;
- this.userName = user;
- this.submethods = submethods;
- }
-
- public byte[] getPayload()
- {
- if (payload == null)
- {
- TypesWriter tw = new TypesWriter();
- tw.writeByte(Packets.SSH_MSG_USERAUTH_REQUEST);
- tw.writeString(userName);
- tw.writeString(serviceName);
- tw.writeString("keyboard-interactive");
- tw.writeString(""); // draft-ietf-secsh-newmodes-04.txt says that
- // the language tag should be empty.
- tw.writeNameList(submethods);
-
- payload = tw.getBytes();
- }
- return payload;
- }
-}