summaryrefslogtreecommitdiffstats
path: root/apps/s_apps.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-02-28 14:06:14 +0100
committerRichard Levitte <levitte@openssl.org>2017-02-28 15:32:01 +0100
commite627a13cd58a54df830e0fc2853f3ea8862699f2 (patch)
tree5830e6b56287ab0ebf8f13cf50faa76f6f26d8a2 /apps/s_apps.h
parent8a05d6bb264eefe224966a4c6415a173ad58861d (diff)
Code health: Remove obvious VAX C fixups
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2775)
Diffstat (limited to 'apps/s_apps.h')
-rw-r--r--apps/s_apps.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/apps/s_apps.h b/apps/s_apps.h
index 22b65b769a..bf27de2fae 100644
--- a/apps/s_apps.h
+++ b/apps/s_apps.h
@@ -17,31 +17,6 @@
# define _kbhit kbhit
#endif
-#if defined(OPENSSL_SYS_VMS) && !defined(FD_SET)
-/*
- * VAX C does not defined fd_set and friends, but it's actually quite simple
- */
-/* These definitions are borrowed from SOCKETSHR. /Richard Levitte */
-# define MAX_NOFILE 32
-# define NBBY 8 /* number of bits in a byte */
-
-# ifndef FD_SETSIZE
-# define FD_SETSIZE MAX_NOFILE
-# endif /* FD_SETSIZE */
-
-/* How many things we'll allow select to use. 0 if unlimited */
-# define MAXSELFD MAX_NOFILE
-typedef int fd_mask; /* int here! VMS prototypes int, not long */
-# define NFDBITS (sizeof(fd_mask) * NBBY)/* bits per mask (power of 2!) */
-# define NFDSHIFT 5 /* Shift based on above */
-
-typedef fd_mask fd_set;
-# define FD_SET(n, p) (*(p) |= (1 << ((n) % NFDBITS)))
-# define FD_CLR(n, p) (*(p) &= ~(1 << ((n) % NFDBITS)))
-# define FD_ISSET(n, p) (*(p) & (1 << ((n) % NFDBITS)))
-# define FD_ZERO(p) memset((p), 0, sizeof(*(p)))
-#endif
-
#define PORT "4433"
#define PROTOCOL "tcp"