diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 16:52:32 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 16:52:32 +1100 |
commit | f9e6eb8f226675389c79fb9c44fcc29038ab9ff7 (patch) | |
tree | 7bd42faa45df0aa0f44f85d146bc652f08a476b1 | |
parent | e32cf43106ee53e180bc855cdb60b6d414547d84 (diff) |
- andreas@cvs.openbsd.org 2009/10/24 11:19:17
[ssh2.h]
Define the KEX messages used when resuming a suspended connection.
ok markus@
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | ssh2.h | 9 |
2 files changed, 11 insertions, 1 deletions
@@ -14,6 +14,9 @@ | |||
14 | client_loop() must detect if the session has been suspended and resumed, | 14 | client_loop() must detect if the session has been suspended and resumed, |
15 | and take appropriate action in that case. | 15 | and take appropriate action in that case. |
16 | From Martin Forssen, maf at appgate dot com | 16 | From Martin Forssen, maf at appgate dot com |
17 | - andreas@cvs.openbsd.org 2009/10/24 11:19:17 | ||
18 | [ssh2.h] | ||
19 | Define the KEX messages used when resuming a suspended connection. | ||
17 | ok markus@ | 20 | ok markus@ |
18 | 21 | ||
19 | 20091226 | 22 | 20091226 |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh2.h,v 1.11 2008/11/04 08:22:13 djm Exp $ */ | 1 | /* $OpenBSD: ssh2.h,v 1.12 2009/10/24 11:19:17 andreas Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2000 Markus Friedl. All rights reserved. | 4 | * Copyright (c) 2000 Markus Friedl. All rights reserved. |
@@ -166,3 +166,10 @@ | |||
166 | 166 | ||
167 | #define SSH2_EXTENDED_DATA_STDERR 1 | 167 | #define SSH2_EXTENDED_DATA_STDERR 1 |
168 | 168 | ||
169 | /* kex messages for resume@appgate.com */ | ||
170 | #define SSH2_MSG_KEX_ROAMING_RESUME 30 | ||
171 | #define SSH2_MSG_KEX_ROAMING_AUTH_REQUIRED 31 | ||
172 | #define SSH2_MSG_KEX_ROAMING_AUTH 32 | ||
173 | #define SSH2_MSG_KEX_ROAMING_AUTH_OK 33 | ||
174 | #define SSH2_MSG_KEX_ROAMING_AUTH_FAIL 34 | ||
175 | |||