summaryrefslogtreecommitdiff
path: root/compat.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-05-09 11:02:59 +1000
committerDamien Miller <djm@mindrot.org>2000-05-09 11:02:59 +1000
commit30c3d429306bb4afe71c18db92816b981f7b6d9d (patch)
treea65f45e0073cb55ad42957a36b4636ff21405108 /compat.h
parent61e50f10c276009bf9472fdd797bf6be60fc2a83 (diff)
- OpenBSD CVS update
- markus@cvs.openbsd.org [cipher.h myproposal.h readconf.c readconf.h servconf.c ssh.1 ssh.c] [ssh.h sshconnect1.c sshconnect2.c sshd.8] - complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only) - hugh@cvs.openbsd.org [ssh.1] - zap typo [ssh-keygen.1] - One last nit fix. (markus approved) [sshd.8] - some markus certified spelling adjustments - markus@cvs.openbsd.org [auth2.c channels.c clientloop.c compat compat.h dsa.c kex.c] [sshconnect2.c ] - bug compat w/ ssh-2.0.13 x11, split out bugs [nchan.c] - no drain if ibuf_empty, fixes x11fwd problems; tests by fries@ [ssh-keygen.c] - handle escapes in real and original key format, ok millert@ [version.h] - OpenSSH-2.1
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/compat.h b/compat.h
index 4943e5a29..cd7c190c7 100644
--- a/compat.h
+++ b/compat.h
@@ -26,7 +26,7 @@
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29/* RCSID("$Id: compat.h,v 1.5 2000/04/12 10:17:39 damien Exp $"); */ 29/* RCSID("$Id: compat.h,v 1.6 2000/05/09 01:03:00 damien Exp $"); */
30 30
31#ifndef COMPAT_H 31#ifndef COMPAT_H
32#define COMPAT_H 32#define COMPAT_H
@@ -36,6 +36,11 @@
36#define SSH_PROTO_1_PREFERRED 0x02 36#define SSH_PROTO_1_PREFERRED 0x02
37#define SSH_PROTO_2 0x04 37#define SSH_PROTO_2 0x04
38 38
39#define SSH_BUG_SIGBLOB 0x01
40#define SSH_BUG_PUBKEYAUTH 0x02
41#define SSH_BUG_HMAC 0x04
42#define SSH_BUG_X11FWD 0x08
43
39void enable_compat13(void); 44void enable_compat13(void);
40void enable_compat20(void); 45void enable_compat20(void);
41void compat_datafellows(const char *s); 46void compat_datafellows(const char *s);