tools/http_load/port.h (67 lines of code) (raw):

/* http_load - multiprocessing http test client ** ** Copyright © 1998,1999,2001 by Jef Poskanzer <jef@mail.acme.com>. ** All rights reserved. ** ** Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions ** are met: ** 1. Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** 2. Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in the ** documentation and/or other materials provided with the distribution. ** ** THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ** SUCH DAMAGE. */ /* port.h - portability defines */ #if defined(__FreeBSD__) #define OS_FreeBSD #define ARCH "FreeBSD" #elif defined(__OpenBSD__) #define OS_OpenBSD #define ARCH "OpenBSD" #elif defined(__NetBSD__) #define OS_NetBSD #define ARCH "NetBSD" #elif defined(__linux__) #define OS_Linux #define ARCH "Linux" #else #define OS_UNKNOWN #define ARCH "UNKNOWN" #endif #ifdef OS_FreeBSD #include <osreldate.h> #define HAVE_DAEMON #define HAVE_SETSID #define HAVE_SETLOGIN #define HAVE_WAITPID #define HAVE_HSTRERROR #define HAVE_TM_GMTOFF #define HAVE_SENDFILE #define HAVE_SCANDIR #define HAVE_INT64T #define HAVE_SRANDOMDEV #ifdef SO_ACCEPTFILTER #define HAVE_ACCEPT_FILTERS #if (__FreeBSD_version >= 411000) #define ACCEPT_FILTER_NAME "httpready" #else #define ACCEPT_FILTER_NAME "dataready" #endif #endif /* SO_ACCEPTFILTER */ #endif /* OS_FreeBSD */ #ifdef OS_OpenBSD #define HAVE_DAEMON #define HAVE_SETSID #define HAVE_SETLOGIN #define HAVE_WAITPID #define HAVE_HSTRERROR #define HAVE_TM_GMTOFF #define HAVE_SCANDIR #define HAVE_INT64T #endif /* OS_OpenBSD */ #ifdef OS_NetBSD #define HAVE_DAEMON #define HAVE_SETSID #define HAVE_SETLOGIN #define HAVE_WAITPID #define HAVE_HSTRERROR #define HAVE_TM_GMTOFF #define HAVE_SCANDIR #define HAVE_INT64T #endif /* OS_NetBSD */ #ifdef OS_Linux #define HAVE_DAEMON #define HAVE_SETSID #define HAVE_WAITPID #define HAVE_TM_GMTOFF #define HAVE_SENDFILE #define HAVE_LINUX_SENDFILE #define HAVE_SCANDIR #define HAVE_INT64T #endif /* OS_Linux */