⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
libmemcached-1.0.18
/
win32
/
View File Name :
wrappers.h
/* LibMemcached * Copyright (C) 2010 Brian Aker, Trond Norbye * All rights reserved. * * Use and distribution licensed under the BSD license. See * the COPYING file in the parent directory for full text. * * Summary: "Implementation" of the function we don't have on windows * to avoid a bunch of ifdefs in the rest of the code * */ #pragma once #include <inttypes.h> /* * One of the Windows headers define interface as a macro, but that * is causing problems with the member named "interface" in some of the * structs. */ #undef interface #undef malloc #undef realloc /* * WinSock use a separate range for error codes. Let's just map to the * WinSock ones. */ #ifndef EADDRINUSE # define EADDRINUSE WSAEADDRINUSE #endif #ifndef EWOULDBLOCK # define EWOULDBLOCK WSAEWOULDBLOCK #endif #ifndef EINPROGRESS # define EINPROGRESS WSAEINPROGRESS #endif #ifndef EALREADY # define EALREADY WSAEALREADY #endif #ifndef EISCONN # define EISCONN WSAEISCONN #endif #ifndef ENOTCONN # define ENOTCONN WSAENOTCONN #endif #ifndef ENOBUFS # define ENOBUFS WSAENOBUFS #endif #ifndef SHUT_RDWR # define SHUT_RDWR SD_BOTH #endif /* EAI_SYSTEM isn't defined anywhere... just set it to... 11? */ #ifndef EAI_SYSTEM # define EAI_SYSTEM 11 #endif /* Best effort mapping of functions to alternative functions */ #define index(a,b) strchr(a,b) #define rindex(a,b) strrchr(a,b) #define random() rand() #define srandom(a) while (false) {} #define kill(a, b) while (false) {} #define fork() (-1) #define waitpid(a,b,c) (-1) #define fnmatch(a,b,c) (-1) #define sleep(a) Sleep(a*1000)