summaryrefslogtreecommitdiff
path: root/ssh2.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-05-17 22:34:22 +1000
committerDamien Miller <djm@mindrot.org>2000-05-17 22:34:22 +1000
commitdcb6ecd1b3b25b6909296ff0546ca6b18d0c19d3 (patch)
tree7eb6d184356f6aa00e62c71565568db706f2e960 /ssh2.h
parent0e65eed58acc0053d163e96463a7c4d0684e55bd (diff)
- OpenBSD CVS update:
- markus@cvs.openbsd.org [ssh.c] fix usage() [ssh2.h] draft-ietf-secsh-architecture-05.txt [ssh.1] document ssh -T -N (ssh2 only) [channels.c serverloop.c ssh.h sshconnect.c sshd.c aux.c] enable nonblocking IO for sshd w/ proto 1, too; split out common code [aux.c] missing include
Diffstat (limited to 'ssh2.h')
-rw-r--r--ssh2.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ssh2.h b/ssh2.h
index cf684bacf..1fa4c0a0d 100644
--- a/ssh2.h
+++ b/ssh2.h
@@ -1,5 +1,5 @@
1/* 1/*
2 * draft-ietf-secsh-architecture-04.txt 2 * draft-ietf-secsh-architecture-05.txt
3 * 3 *
4 * Transport layer protocol: 4 * Transport layer protocol:
5 * 5 *
@@ -28,6 +28,7 @@
28 * 28 *
29 * 192-255 Local extensions 29 * 192-255 Local extensions
30 */ 30 */
31/* RCSID("$OpenBSD: ssh2.h,v 1.3 2000/05/15 07:03:12 markus Exp $"); */
31 32
32/* transport layer: generic */ 33/* transport layer: generic */
33 34
@@ -88,6 +89,7 @@
88#define SSH2_DISCONNECT_PROTOCOL_ERROR 2 89#define SSH2_DISCONNECT_PROTOCOL_ERROR 2
89#define SSH2_DISCONNECT_KEY_EXCHANGE_FAILED 3 90#define SSH2_DISCONNECT_KEY_EXCHANGE_FAILED 3
90#define SSH2_DISCONNECT_HOST_AUTHENTICATION_FAILED 4 91#define SSH2_DISCONNECT_HOST_AUTHENTICATION_FAILED 4
92#define SSH2_DISCONNECT_RESERVED 4
91#define SSH2_DISCONNECT_MAC_ERROR 5 93#define SSH2_DISCONNECT_MAC_ERROR 5
92#define SSH2_DISCONNECT_COMPRESSION_ERROR 6 94#define SSH2_DISCONNECT_COMPRESSION_ERROR 6
93#define SSH2_DISCONNECT_SERVICE_NOT_AVAILABLE 7 95#define SSH2_DISCONNECT_SERVICE_NOT_AVAILABLE 7
@@ -95,6 +97,10 @@
95#define SSH2_DISCONNECT_HOST_KEY_NOT_VERIFIABLE 9 97#define SSH2_DISCONNECT_HOST_KEY_NOT_VERIFIABLE 9
96#define SSH2_DISCONNECT_CONNECTION_LOST 10 98#define SSH2_DISCONNECT_CONNECTION_LOST 10
97#define SSH2_DISCONNECT_BY_APPLICATION 11 99#define SSH2_DISCONNECT_BY_APPLICATION 11
100#define SSH2_DISCONNECT_TOO_MANY_CONNECTIONS 12
101#define SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER 13
102#define SSH2_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE 14
103#define SSH2_DISCONNECT_ILLEGAL_USER_NAME 15
98 104
99/* misc */ 105/* misc */
100 106