From 7f6ea0264d01aa40b20df8dc75141631479da054 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Thu, 28 Oct 1999 13:25:17 +1000 Subject: - Integrated patch from Dan Brosemer - Build fixes - Autoconf - Change binary names to open* - Fixed autoconf script to detect PAM on RH6.1 - Added tests for libpwdb, and OpenBSD functions to autoconf (not used yet) --- ssh.h | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'ssh.h') diff --git a/ssh.h b/ssh.h index a4bf136e..133c084b 100644 --- a/ssh.h +++ b/ssh.h @@ -13,11 +13,25 @@ Generic header file for ssh. */ -/* RCSID("$Id: ssh.h,v 1.1 1999/10/27 03:42:45 damien Exp $"); */ +/* RCSID("$Id: ssh.h,v 1.2 1999/10/28 03:25:17 damien Exp $"); */ #ifndef SSH_H #define SSH_H +/* Added by Dan */ +#ifndef SHUT_RDWR +enum +{ + SHUT_RD = 0, /* No more receptions. */ +#define SHUT_RD SHUT_RD + SHUT_WR, /* No more transmissions. */ +#define SHUT_WR SHUT_WR + SHUT_RDWR /* No more receptions or transmissions. */ +#define SHUT_RDWR SHUT_RDWR +}; +#endif + + #include "rsa.h" #include "cipher.h" -- cgit v1.2.3