Files
org-hyperion-cules/hstdinc.h
Fish (David B. Trout) a2e06edcc9 Fixes for unreliable console keepalive issue #44:
1. Fix configure.ac tcp.h header and keepalive constant checks and report during ./configure the keepalive support that was detected (none, basic or full).

2. #include the correct tcp.h header in hstdinc.h

3. Issue warning message at build time (during make) when full keepalive support is missing or partial.

4. Report partial or missing keepalive build support via version.c "With" and "Without" messages.

5. Issue error or warning in both impl.c as well as in 'conkpalv' command/statement processing function when keepalive support is either missing or only partially supported. Same for the 2703 device 'ka=' option too.

6. Enhance set_socket_keepalive function to let the caller know not only about failures but also about partial-only successes (so they can be reported).

7. Fix the bad setsockopt call in the Linux version of the set_socket_keepalive function that was using the wrong value, which was at the heart of the problem. (Note: setsockopt was returning "success" anyway even though it had actually failed! [to accomplish anything].)

8. Introduce new get_socket_keepalive function to allow retrieval and reporting of current keepalive settings for a given socket.

9. Manually maintain socket keepalive values for Windows builds so it too can support retrieval of current values via new get_socket_keepalive function. (see comments in w32util.c "get_socket_keepalive" function!)

10. Minor HTML documentation edits.
2015-01-19 13:35:29 -08:00

240 lines
5.9 KiB
C

/* HSTDINC.H (c) Copyright Roger Bowler, 1999-2012 */
/* Hercules precompilation-eligible Header Files */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
/* This file contains #include statements for all of the header */
/* files which are not dependent on the mainframe architectural */
/* features selected and thus are eligible for precompilation */
#ifndef _HSTDINC_H
#define _HSTDINC_H
#ifdef HAVE_CONFIG_H
#include <config.h> // Hercules build configuration options/settings
#endif
#include "hqainc.h" // User override of build configuration/settings
#ifdef WIN32
#include "targetver.h" // Earliest/Oldest Windows platform supported
#endif
/*-------------------------------------------------------------------*/
/* Required and optional SYSTEM headers... */
/*-------------------------------------------------------------------*/
#define _REENTRANT /* Ensure that reentrant code is generated *JJ */
#define _THREAD_SAFE /* Some systems use this instead *JJ */
#if defined(HAVE_STRSIGNAL) && defined(__GNUC__) && !defined(_GNU_SOURCE)
#define _GNU_SOURCE /* required by strsignal() *JJ */
#endif
/* Required headers -- These we ALWAYS need to have... */
#include "ccnowarn.h" /* suppress compiler warning support */
#ifdef _MSVC_
#include <winsock2.h> // Windows Sockets 2
#include <mstcpip.h> // (need struct tcp_keepalive)
#if defined(ENABLE_IPV6)
#include <ws2tcpip.h> // For IPV6
#endif
#include <netioapi.h> // For if_nametoindex
#endif
#ifdef WIN32
#include <windows.h>
#endif
#ifdef _MSVC_
#include <math.h> // Must come BEFORE <intrin.h> due to
// MS VC Bug ID 381422
#include <xmmintrin.h>
#include <tchar.h>
#include <wincon.h>
#include <conio.h>
#include <io.h>
#include <lmcons.h>
#include <tlhelp32.h>
#include <dbghelp.h>
#include <crtdbg.h>
#include <intrin.h>
#else
#include <libgen.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <setjmp.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#ifndef O_BINARY
#define O_BINARY 0
#endif
#ifndef O_NONBLOCK
#define O_NONBLOCK 0
#endif
#include <limits.h>
#include <time.h>
#include <sys/stat.h>
#if !defined(_MSVC_)
#include <sched.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#endif
#include <sys/types.h>
/* Optional headers -- These we can live without */
/* PROGRAMMING NOTE: On Darwin, <sys/socket.h> must be included before
<net/if.h>, and on older Darwin systems, before <net/route.h> and
<netinet/in.h> */
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#ifdef HAVE_LINUX_IF_TUN_H
#include <linux/if_tun.h>
#endif
#ifdef HAVE_NET_ROUTE_H
#include <net/route.h>
#endif
#ifdef HAVE_NET_IF_H
#include <net/if.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#if defined( HAVE_NETINET_TCP_H )
#include <netinet/tcp.h>
#elif defined( HAVE_NET_TCP_H )
#include <net/tcp.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif
#ifdef HAVE_SYS_MTIO_H
#include <sys/mtio.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
#ifdef HAVE_SYS_UN_H
#include <sys/un.h>
#endif
#ifdef HAVE_SYS_UIO_H
#include <sys/uio.h>
#endif
#ifdef HAVE_SYS_UTSNAME_H
#include <sys/utsname.h>
#endif
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#ifdef HAVE_BYTESWAP_H
#ifndef NO_ASM_BYTESWAP
#include <byteswap.h>
#endif
#endif
#ifdef HAVE_BZLIB_H
// windows.h #defines 'small' as char and bzlib.h
// uses it for a variable name so we must #undef.
#if defined(__CYGWIN__)
#undef small
#endif
#include <bzlib.h>
/* ISW 20050427 : CCKD_BZIP2/HET_BZIP2 are usually */
/* controlled by config.h (automagic). If config.h */
/* is not present however, then define them here. */
#if !defined(HAVE_CONFIG_H)
#define CCKD_BZIP2
#define HET_BZIP2
#endif
#endif
#ifdef HAVE_DIRENT_H
#include <dirent.h>
#endif
#ifdef OPTION_DYNAMIC_LOAD
#ifdef HDL_USE_LIBTOOL
#include <ltdl.h>
#else
#if defined(__MINGW__) || defined(_MSVC_)
#include "w32dl.h"
#else
#include <dlfcn.h>
#endif
#endif
#endif
#ifdef HAVE_FENV_H
#include <fenv.h>
#endif
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif
#ifdef HAVE_MALLOC_H
#include <malloc.h>
#endif
#if defined(HAVE_MATH_H) && !defined(_MSVC_)
#include <math.h>
#endif
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
#ifdef HAVE_REGEX_H
#include <regex.h>
#endif
#ifdef HAVE_SIGNAL_H
#include <signal.h>
#endif
#ifdef HAVE_TIME_H
#include <time.h>
#endif
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#endif
#ifdef HAVE_ZLIB_H
#include <zlib.h>
#endif
#ifdef HAVE_SYS_CAPABILITY_H
#include <sys/capability.h>
#endif
#ifdef HAVE_SYS_PRCTL_H
#include <sys/prctl.h>
#endif
// Some Hercules specific files, NOT guest arch dependent
#if defined(_MSVC_)
#include "hercwind.h" // Hercules definitions for Windows
#else
#include <unistd.h> // Unix standard definitions
#endif
#ifdef C99_FLEXIBLE_ARRAYS
#define FLEXIBLE_ARRAY // ("DEVBLK *memdev[];" syntax is supported)
#else
#define FLEXIBLE_ARRAY 0 // ("DEVBLK *memdev[0];" must be used instead)
#endif
#include "hostopts.h" // Must come before htypes.h
#include "htypes.h" // Hercules-wide data types
#include "dbgtrace.h" // Hercules default debugging
#endif // _HSTDINC_H