diff options
author | 2009-10-24 11:19:17 +0000 | |
---|---|---|
committer | 2009-10-24 11:19:17 +0000 | |
commit | 65658dc8f9f4794c2e8c553a46d7d3190ea4e454 (patch) | |
tree | 57d88402359bec5d5ea35950b7b4560029dd128d /usr.bin/ssh/ssh2.h | |
parent | Dummy implementation of wait_for_roaming_reconnect() for the server side. (diff) | |
download | wireguard-openbsd-65658dc8f9f4794c2e8c553a46d7d3190ea4e454.tar.xz wireguard-openbsd-65658dc8f9f4794c2e8c553a46d7d3190ea4e454.zip |
Define the KEX messages used when resuming a suspended connection.
ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh2.h')
-rw-r--r-- | usr.bin/ssh/ssh2.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh2.h b/usr.bin/ssh/ssh2.h index 1c33dc268b3..b01af7b1abc 100644 --- a/usr.bin/ssh/ssh2.h +++ b/usr.bin/ssh/ssh2.h @@ -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. @@ -166,3 +166,10 @@ #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 + |