summaryrefslogtreecommitdiff
path: root/ssh.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-28 13:25:17 +1000
committerDamien Miller <djm@mindrot.org>1999-10-28 13:25:17 +1000
commit7f6ea0264d01aa40b20df8dc75141631479da054 (patch)
treea30aa324db2b41c64e1216ce73b7b7468e5ff706 /ssh.h
parent3d112efc672b877c74893229d3fd30f99489b9ff (diff)
- Integrated patch from Dan Brosemer <odin@linuxfreak.com>
- 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)
Diffstat (limited to 'ssh.h')
-rw-r--r--ssh.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/ssh.h b/ssh.h
index a4bf136e4..133c084b6 100644
--- a/ssh.h
+++ b/ssh.h
@@ -13,11 +13,25 @@ Generic header file for ssh.
13 13
14*/ 14*/
15 15
16/* RCSID("$Id: ssh.h,v 1.1 1999/10/27 03:42:45 damien Exp $"); */ 16/* RCSID("$Id: ssh.h,v 1.2 1999/10/28 03:25:17 damien Exp $"); */
17 17
18#ifndef SSH_H 18#ifndef SSH_H
19#define SSH_H 19#define SSH_H
20 20
21/* Added by Dan */
22#ifndef SHUT_RDWR
23enum
24{
25 SHUT_RD = 0, /* No more receptions. */
26#define SHUT_RD SHUT_RD
27 SHUT_WR, /* No more transmissions. */
28#define SHUT_WR SHUT_WR
29 SHUT_RDWR /* No more receptions or transmissions. */
30#define SHUT_RDWR SHUT_RDWR
31};
32#endif
33
34
21#include "rsa.h" 35#include "rsa.h"
22#include "cipher.h" 36#include "cipher.h"
23 37