comparison app/src/main/java/ch/ethz/ssh2/packets/Packets.java @ 438:d29cce60f393

migrate from Eclipse to Android Studio
author Carl Byington <carl@five-ten-sg.com>
date Thu, 03 Dec 2015 11:23:55 -0800
parents src/ch/ethz/ssh2/packets/Packets.java@071eccdff8ea
children
comparison
equal deleted inserted replaced
437:208b31032318 438:d29cce60f393
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 /**
8 * Packets.
9 *
10 * @author Christian Plattner
11 * @version 2.50, 03/15/10
12 */
13 public final class Packets {
14 public static final int SSH_MSG_DISCONNECT = 1;
15 public static final int SSH_MSG_IGNORE = 2;
16 public static final int SSH_MSG_UNIMPLEMENTED = 3;
17 public static final int SSH_MSG_DEBUG = 4;
18 public static final int SSH_MSG_SERVICE_REQUEST = 5;
19 public static final int SSH_MSG_SERVICE_ACCEPT = 6;
20
21 public static final int SSH_MSG_KEXINIT = 20;
22 public static final int SSH_MSG_NEWKEYS = 21;
23
24 public static final int SSH_MSG_KEXDH_INIT = 30;
25 public static final int SSH_MSG_KEXDH_REPLY = 31;
26
27 public static final int SSH_MSG_KEX_DH_GEX_REQUEST_OLD = 30;
28 public static final int SSH_MSG_KEX_DH_GEX_REQUEST = 34;
29 public static final int SSH_MSG_KEX_DH_GEX_GROUP = 31;
30 public static final int SSH_MSG_KEX_DH_GEX_INIT = 32;
31 public static final int SSH_MSG_KEX_DH_GEX_REPLY = 33;
32
33 public static final int SSH_MSG_USERAUTH_REQUEST = 50;
34 public static final int SSH_MSG_USERAUTH_FAILURE = 51;
35 public static final int SSH_MSG_USERAUTH_SUCCESS = 52;
36 public static final int SSH_MSG_USERAUTH_BANNER = 53;
37 public static final int SSH_MSG_USERAUTH_INFO_REQUEST = 60;
38 public static final int SSH_MSG_USERAUTH_INFO_RESPONSE = 61;
39
40 public static final int SSH_MSG_GLOBAL_REQUEST = 80;
41 public static final int SSH_MSG_REQUEST_SUCCESS = 81;
42 public static final int SSH_MSG_REQUEST_FAILURE = 82;
43
44 public static final int SSH_MSG_CHANNEL_OPEN = 90;
45 public static final int SSH_MSG_CHANNEL_OPEN_CONFIRMATION = 91;
46 public static final int SSH_MSG_CHANNEL_OPEN_FAILURE = 92;
47 public static final int SSH_MSG_CHANNEL_WINDOW_ADJUST = 93;
48 public static final int SSH_MSG_CHANNEL_DATA = 94;
49 public static final int SSH_MSG_CHANNEL_EXTENDED_DATA = 95;
50 public static final int SSH_MSG_CHANNEL_EOF = 96;
51 public static final int SSH_MSG_CHANNEL_CLOSE = 97;
52 public static final int SSH_MSG_CHANNEL_REQUEST = 98;
53 public static final int SSH_MSG_CHANNEL_SUCCESS = 99;
54 public static final int SSH_MSG_CHANNEL_FAILURE = 100;
55
56 public static final int SSH_EXTENDED_DATA_STDERR = 1;
57
58 public static final int SSH_OPEN_ADMINISTRATIVELY_PROHIBITED = 1;
59 public static final int SSH_OPEN_CONNECT_FAILED = 2;
60 public static final int SSH_OPEN_UNKNOWN_CHANNEL_TYPE = 3;
61 public static final int SSH_OPEN_RESOURCE_SHORTAGE = 4;
62
63 private static final String[] reverseNames = new String[101];
64
65 static {
66 reverseNames[1] = "SSH_MSG_DISCONNECT";
67 reverseNames[2] = "SSH_MSG_IGNORE";
68 reverseNames[3] = "SSH_MSG_UNIMPLEMENTED";
69 reverseNames[4] = "SSH_MSG_DEBUG";
70 reverseNames[5] = "SSH_MSG_SERVICE_REQUEST";
71 reverseNames[6] = "SSH_MSG_SERVICE_ACCEPT";
72 reverseNames[20] = "SSH_MSG_KEXINIT";
73 reverseNames[21] = "SSH_MSG_NEWKEYS";
74 reverseNames[30] = "SSH_MSG_KEXDH_INIT";
75 reverseNames[31] = "SSH_MSG_KEXDH_REPLY/SSH_MSG_KEX_DH_GEX_GROUP";
76 reverseNames[32] = "SSH_MSG_KEX_DH_GEX_INIT";
77 reverseNames[33] = "SSH_MSG_KEX_DH_GEX_REPLY";
78 reverseNames[34] = "SSH_MSG_KEX_DH_GEX_REQUEST";
79 reverseNames[50] = "SSH_MSG_USERAUTH_REQUEST";
80 reverseNames[51] = "SSH_MSG_USERAUTH_FAILURE";
81 reverseNames[52] = "SSH_MSG_USERAUTH_SUCCESS";
82 reverseNames[53] = "SSH_MSG_USERAUTH_BANNER";
83 reverseNames[60] = "SSH_MSG_USERAUTH_INFO_REQUEST";
84 reverseNames[61] = "SSH_MSG_USERAUTH_INFO_RESPONSE";
85 reverseNames[80] = "SSH_MSG_GLOBAL_REQUEST";
86 reverseNames[81] = "SSH_MSG_REQUEST_SUCCESS";
87 reverseNames[82] = "SSH_MSG_REQUEST_FAILURE";
88 reverseNames[90] = "SSH_MSG_CHANNEL_OPEN";
89 reverseNames[91] = "SSH_MSG_CHANNEL_OPEN_CONFIRMATION";
90 reverseNames[92] = "SSH_MSG_CHANNEL_OPEN_FAILURE";
91 reverseNames[93] = "SSH_MSG_CHANNEL_WINDOW_ADJUST";
92 reverseNames[94] = "SSH_MSG_CHANNEL_DATA";
93 reverseNames[95] = "SSH_MSG_CHANNEL_EXTENDED_DATA";
94 reverseNames[96] = "SSH_MSG_CHANNEL_EOF";
95 reverseNames[97] = "SSH_MSG_CHANNEL_CLOSE";
96 reverseNames[98] = "SSH_MSG_CHANNEL_REQUEST";
97 reverseNames[99] = "SSH_MSG_CHANNEL_SUCCESS";
98 reverseNames[100] = "SSH_MSG_CHANNEL_FAILURE";
99 }
100
101 public static final String getMessageName(int type) {
102 String res = null;
103
104 if ((type >= 0) && (type < reverseNames.length)) {
105 res = reverseNames[type];
106 }
107
108 return (res == null) ? ("UNKNOWN MSG " + type) : res;
109 }
110
111 // public static final void debug(String tag, byte[] msg)
112 // {
113 // System.err.println(tag + " Type: " + msg[0] + ", LEN: " + msg.length);
114 //
115 // for (int i = 0; i < msg.length; i++)
116 // {
117 // if (((msg[i] >= 'a') && (msg[i] <= 'z')) || ((msg[i] >= 'A') && (msg[i] <= 'Z'))
118 // || ((msg[i] >= '0') && (msg[i] <= '9')) || (msg[i] == ' '))
119 // System.err.print((char) msg[i]);
120 // else
121 // System.err.print(".");
122 // }
123 // System.err.println();
124 // System.err.flush();
125 // }
126 }