]> andersk Git - openssh.git/blobdiff - ssh.h
- Integrated patch from Dan Brosemer <odin@linuxfreak.com>
[openssh.git] / ssh.h
diff --git a/ssh.h b/ssh.h
index 4284bc914839bb4052b56c72545b9c3587ab38e4..e619b0eb176a94af72d16bff56220cb3219f359a 100644 (file)
--- a/ssh.h
+++ b/ssh.h
@@ -18,6 +18,20 @@ Generic header file for ssh.
 #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"
 
This page took 0.031176 seconds and 4 git commands to generate.