Server IP : 104.21.38.3 / Your IP : 172.68.164.105 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/plugin/innodb_memcached/daemon_memcached/ |
Upload File : |
/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* Consider this file as an extension to config.h, just that it contains * static text. The intention is to reduce the number of #ifdefs in the rest * of the source files without having to put all of them in AH_BOTTOM * in configure.ac. */ #ifndef CONFIG_STATIC_H #define CONFIG_STATIC_H 1 #ifdef WIN32 #define SOCKETPAIR_AF AF_INET #define get_socket_error() WSAGetLastError() extern void initialize_sockets(void); #else #define closesocket(a) close(a) #define SOCKET int #define SOCKETPAIR_AF AF_UNIX #define SOCKET_ERROR -1 #define INVALID_SOCKET -1 #define get_socket_error() errno #define initialize_sockets() #endif #define HAVE_NETDB_H 1 #define HAVE_NETINET_TCP_H 1 #define HAVE_NETINET_IN_H 1 #define HAVE_SIGIGNORE 1 #ifdef HAVE_DLFCN_H #include <dlfcn.h> #endif #ifdef HAVE_LINK_H #include <link.h> #endif #ifdef HAVE_STDBOOL_H #include <stdbool.h> #else #ifndef bool #define bool char #define false 0 #define true 1 #endif #endif #ifdef HAVE_INTTYPES_H #include <inttypes.h> #endif #ifdef HAVE_SYSEXITS_H #include <sysexits.h> #else /* todo: we should move this file out of win32, because it could be used * on all platforms without it's own sysexits.h */ #include <win32/sysexits.h> #endif #ifdef HAVE_SYS_WAIT_H #include <sys/wait.h> #endif #ifdef HAVE_SYS_SOCKET_H #include <sys/socket.h> #endif #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif #ifdef HAVE_NETDB_H #include <netdb.h> #endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #ifdef HAVE_SYS_STAT_H #include <sys/stat.h> #endif #ifdef HAVE_SYS_UN_H #include <sys/un.h> #endif #ifdef HAVE_SYS_RESOURCE_H #include <sys/resource.h> #endif #ifdef HAVE_SYS_UIO_H #include <sys/uio.h> #endif #ifdef HAVE_NETINET_TCP_H #include <netinet/tcp.h> #endif #ifdef HAVE_ARPA_INET_H #include <arpa/inet.h> #endif /* some POSIX systems need the following definition * to get mlockall flags out of sys/mman.h. */ #ifndef _P1003_1B_VISIBLE #define _P1003_1B_VISIBLE #endif /* need this to get IOV_MAX on some platforms. */ #ifndef __need_IOV_MAX #define __need_IOV_MAX #endif #ifdef HAVE_PWD_H #include <pwd.h> #endif #ifdef HAVE_SYS_MMAN_H #include <sys/mman.h> #endif /* FreeBSD 4.x doesn't have IOV_MAX exposed. */ #ifndef IOV_MAX #if defined(__FreeBSD__) || defined(__APPLE__) # define IOV_MAX 1024 #endif #endif #if defined(ENABLE_SASL) || defined(ENABLE_ISASL) #define SASL_ENABLED #endif #endif