Deleted Added
full compact
ssh2.h (192595) ssh2.h (204917)
1/* $OpenBSD: ssh2.h,v 1.11 2008/11/04 08:22:13 djm Exp $ */
1/* $OpenBSD: ssh2.h,v 1.13 2010/02/26 20:29:54 djm Exp $ */
2
3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright

--- 151 unchanged lines hidden (view full) ---

161
162#define SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED 1
163#define SSH2_OPEN_CONNECT_FAILED 2
164#define SSH2_OPEN_UNKNOWN_CHANNEL_TYPE 3
165#define SSH2_OPEN_RESOURCE_SHORTAGE 4
166
167#define SSH2_EXTENDED_DATA_STDERR 1
168
2
3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright

--- 151 unchanged lines hidden (view full) ---

161
162#define SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED 1
163#define SSH2_OPEN_CONNECT_FAILED 2
164#define SSH2_OPEN_UNKNOWN_CHANNEL_TYPE 3
165#define SSH2_OPEN_RESOURCE_SHORTAGE 4
166
167#define SSH2_EXTENDED_DATA_STDERR 1
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
176/* Certificate types for OpenSSH certificate keys extension */
177#define SSH2_CERT_TYPE_USER 1
178#define SSH2_CERT_TYPE_HOST 2