/*************************************************************************\ * Copyright (c) 2010 UChicago Argonne LLC, 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 is distributed subject to a Software License Agreement found * in file LICENSE that is included with this distribution. \*************************************************************************/ /* * Revision-Id: anj@aps.anl.gov-20101005192737-disfz3vs0f3fiixd * Author: Jeff Hill */ #define epicsExportSharedSymbols #include "osiSock.h" #include "errlog.h" epicsShareFunc void epicsShareAPI epicsSocketEnableAddressReuseDuringTimeWaitState ( SOCKET s ) { int yes = true; int status; status = setsockopt ( s, SOL_SOCKET, SO_REUSEADDR, (char *) & yes, sizeof ( yes ) ); if ( status < 0 ) { errlogPrintf ( "epicsSocketEnablePortUseForDatagramFanout: " "unable to set SO_REUSEADDR?\n"); } } /* * SO_REUSEPORT is not in POSIX */ epicsShareFunc void epicsShareAPI epicsSocketEnableAddressUseForDatagramFanout ( SOCKET s ) { int yes = true; int status; status = setsockopt ( s, SOL_SOCKET, SO_REUSEPORT, (char *) & yes, sizeof ( yes ) ); if ( status < 0 ) { errlogPrintf ( "epicsSocketEnablePortUseForDatagramFanout: " "unable to set SO_REUSEPORT?\n"); } }