summaryrefslogtreecommitdiff
path: root/ssh2.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:23:41 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:23:41 +1100
commit84b8ab3eeef42818e20d2b46627245fe450082ab (patch)
tree9456895307a8523f11ce0a819b1168738e9d83b9 /ssh2.h
parent659811f7fca35260b97352b632e0c9ca4d5d7979 (diff)
- markus@cvs.openbsd.org 2002/01/11 13:36:43
[ssh2.h] add defines for msg type ranges
Diffstat (limited to 'ssh2.h')
-rw-r--r--ssh2.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/ssh2.h b/ssh2.h
index e45aef275..77b4d0890 100644
--- a/ssh2.h
+++ b/ssh2.h
@@ -52,7 +52,22 @@
52 * 52 *
53 * 192-255 Local extensions 53 * 192-255 Local extensions
54 */ 54 */
55/* RCSID("$OpenBSD: ssh2.h,v 1.6 2001/03/27 17:46:49 provos Exp $"); */ 55/* RCSID("$OpenBSD: ssh2.h,v 1.7 2002/01/11 13:36:43 markus Exp $"); */
56
57/* ranges */
58
59#define SSH2_MSG_TRANSPORT_MIN 1
60#define SSH2_MSG_TRANSPORT_MAX 49
61#define SSH2_MSG_USERAUTH_MIN 50
62#define SSH2_MSG_USERAUTH_MAX 79
63#define SSH2_MSG_CONNECTION_MIN 80
64#define SSH2_MSG_CONNECTION_MAX 127
65#define SSH2_MSG_RESERVED_MIN 128
66#define SSH2_MSG_RESERVED_MAX 191
67#define SSH2_MSG_LOCAL_MIN 192
68#define SSH2_MSG_LOCAL_MAX 255
69#define SSH2_MSG_MIN 1
70#define SSH2_MSG_MAX 255
56 71
57/* transport layer: generic */ 72/* transport layer: generic */
58 73