[ssh2.h]
     Define the KEX messages used when resuming a suspended connection.
     ok markus@
This commit is contained in:
Darren Tucker 2010-01-08 16:52:32 +11:00
parent e32cf43106
commit f9e6eb8f22
2 changed files with 11 additions and 1 deletions

View File

@ -14,6 +14,9 @@
client_loop() must detect if the session has been suspended and resumed, client_loop() must detect if the session has been suspended and resumed,
and take appropriate action in that case. and take appropriate action in that case.
From Martin Forssen, maf at appgate dot com From Martin Forssen, maf at appgate dot com
- andreas@cvs.openbsd.org 2009/10/24 11:19:17
[ssh2.h]
Define the KEX messages used when resuming a suspended connection.
ok markus@ ok markus@
20091226 20091226

9
ssh2.h
View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh2.h,v 1.11 2008/11/04 08:22:13 djm Exp $ */ /* $OpenBSD: ssh2.h,v 1.12 2009/10/24 11:19:17 andreas Exp $ */
/* /*
* Copyright (c) 2000 Markus Friedl. All rights reserved. * Copyright (c) 2000 Markus Friedl. All rights reserved.
@ -166,3 +166,10 @@
#define SSH2_EXTENDED_DATA_STDERR 1 #define SSH2_EXTENDED_DATA_STDERR 1
/* kex messages for resume@appgate.com */
#define SSH2_MSG_KEX_ROAMING_RESUME 30
#define SSH2_MSG_KEX_ROAMING_AUTH_REQUIRED 31
#define SSH2_MSG_KEX_ROAMING_AUTH 32
#define SSH2_MSG_KEX_ROAMING_AUTH_OK 33
#define SSH2_MSG_KEX_ROAMING_AUTH_FAIL 34