/*************************************************************************\ * Copyright (c) 2002 The University of Chicago, as Operator of Argonne * National Laboratory. * Copyright (c) 2002 The Regents of the University of California, as * Operator of Los Alamos National Laboratory. * EPICS BASE Versions 3.13.7 * and higher are distributed subject to a Software License Agreement found * in file LICENSE that is included with this distribution. \*************************************************************************/ #include #include #include #include #if defined(WINTCP) /* Wallangong */ # define socket_close(S) netclose(S) # define socket_ioctl(A,B,C) ioctl(A,B,C) # include # include # include # include # define SOCKERRNO uerrno #elif defined(UCX) /* GeG 09-DEC-1992 */ # include # include # define socket_close(S) close(S) # define socket_ioctl(A,B,C) ioctl(A,B,C) # include # define SOCKERRNO errno #else /* MULTINET */ # include # include # include # include # define SOCKERRNO socket_errno #endif /* * NOOP out task watch dog for now */ #define taskwdInsert(A,B,C) #define taskwdRemove(A)