Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
apps /
php81 /
include /
libmemcached-1.0 /
Delete
Unzip
Name
Size
Permission
Date
Action
struct
[ DIR ]
drwxr-xr-x
2024-11-30 08:20
types
[ DIR ]
drwxr-xr-x
2024-11-30 08:20
alloc.h
2.16
KB
-rw-r--r--
2024-11-30 08:20
allocators.h
2.67
KB
-rw-r--r--
2024-11-30 08:20
analyze.h
2.09
KB
-rw-r--r--
2024-11-30 08:20
auto.h
5.53
KB
-rw-r--r--
2024-11-30 08:20
basic_string.h
2.02
KB
-rw-r--r--
2024-11-30 08:20
behavior.h
3.17
KB
-rw-r--r--
2024-11-30 08:20
callback.h
2.15
KB
-rw-r--r--
2024-11-30 08:20
callbacks.h
2.29
KB
-rw-r--r--
2024-11-30 08:20
configure.h
1.9
KB
-rw-r--r--
2024-11-30 08:20
defaults.h
2.39
KB
-rw-r--r--
2024-11-30 08:20
delete.h
2.22
KB
-rw-r--r--
2024-11-30 08:20
deprecated_types.h
2.57
KB
-rw-r--r--
2024-11-30 08:20
dump.h
1.9
KB
-rw-r--r--
2024-11-30 08:20
encoding_key.h
1.84
KB
-rw-r--r--
2024-11-30 08:20
error.h
2.3
KB
-rw-r--r--
2024-11-30 08:20
exception.hpp
1.14
KB
-rw-r--r--
2024-11-30 08:20
exist.h
2.05
KB
-rw-r--r--
2024-11-30 08:20
fetch.h
2.04
KB
-rw-r--r--
2024-11-30 08:20
flush.h
1.84
KB
-rw-r--r--
2024-11-30 08:20
flush_buffers.h
1.83
KB
-rw-r--r--
2024-11-30 08:20
get.h
4.63
KB
-rw-r--r--
2024-11-30 08:20
hash.h
2.34
KB
-rw-r--r--
2024-11-30 08:20
limits.h
1.96
KB
-rw-r--r--
2024-11-30 08:20
memcached.h
5.43
KB
-rw-r--r--
2024-11-30 08:20
memcached.hpp
28.39
KB
-rw-r--r--
2024-11-30 08:20
options.h
1.88
KB
-rw-r--r--
2024-11-30 08:20
parse.h
424
B
-rw-r--r--
2024-11-30 08:20
platform.h
2.04
KB
-rw-r--r--
2024-11-30 08:20
quit.h
1.81
KB
-rw-r--r--
2024-11-30 08:20
result.h
3
KB
-rw-r--r--
2024-11-30 08:20
return.h
3.03
KB
-rw-r--r--
2024-11-30 08:20
sasl.h
2.47
KB
-rw-r--r--
2024-11-30 08:20
server.h
4.87
KB
-rw-r--r--
2024-11-30 08:20
server_list.h
2.88
KB
-rw-r--r--
2024-11-30 08:20
stats.h
2.66
KB
-rw-r--r--
2024-11-30 08:20
storage.h
6.33
KB
-rw-r--r--
2024-11-30 08:20
strerror.h
1.86
KB
-rw-r--r--
2024-11-30 08:20
touch.h
2.25
KB
-rw-r--r--
2024-11-30 08:20
triggers.h
2.63
KB
-rw-r--r--
2024-11-30 08:20
types.h
3.06
KB
-rw-r--r--
2024-11-30 08:20
verbosity.h
1.85
KB
-rw-r--r--
2024-11-30 08:20
version.h
1.89
KB
-rw-r--r--
2024-11-30 08:20
visibility.h
2
KB
-rw-r--r--
2024-11-30 08:20
Save
Rename
/* LibMemcached * Copyright (C) 2006-2009 Brian Aker * All rights reserved. * * Use and distribution licensed under the BSD license. See * the COPYING file in the parent directory for full text. * * Summary: Interface for memcached server. * * Author: Trond Norbye * */ /** * @file * @brief Visibility control macros */ #pragma once /** * * LIBMEMCACHED_API is used for the public API symbols. It either DLL imports or * DLL exports (or does nothing for static build). * * LIBMEMCACHED_LOCAL is used for non-api symbols. */ #if defined(BUILDING_LIBMEMCACHEDINTERNAL) # if defined(HAVE_VISIBILITY) && HAVE_VISIBILITY # define LIBMEMCACHED_API __attribute__ ((visibility("default"))) # define LIBMEMCACHED_LOCAL __attribute__ ((visibility("default"))) # elif defined (__SUNPRO_C) && (__SUNPRO_C >= 0x550) # define LIBMEMCACHED_API __global # define LIBMEMCACHED_LOCAL __global # elif defined(_MSC_VER) # define LIBMEMCACHED_API extern __declspec(dllexport) # define LIBMEMCACHED_LOCAL extern __declspec(dllexport) # else # define LIBMEMCACHED_API # define LIBMEMCACHED_LOCAL # endif #else # if defined(BUILDING_LIBMEMCACHED) # if defined(HAVE_VISIBILITY) && HAVE_VISIBILITY # define LIBMEMCACHED_API __attribute__ ((visibility("default"))) # define LIBMEMCACHED_LOCAL __attribute__ ((visibility("hidden"))) # elif defined (__SUNPRO_C) && (__SUNPRO_C >= 0x550) # define LIBMEMCACHED_API __global # define LIBMEMCACHED_LOCAL __hidden # elif defined(_MSC_VER) # define LIBMEMCACHED_API extern __declspec(dllexport) # define LIBMEMCACHED_LOCAL # else # define LIBMEMCACHED_API # define LIBMEMCACHED_LOCAL # endif /* defined(HAVE_VISIBILITY) */ # else /* defined(BUILDING_LIBMEMCACHED) */ # if defined(_MSC_VER) # define LIBMEMCACHED_API extern __declspec(dllimport) # define LIBMEMCACHED_LOCAL # else # define LIBMEMCACHED_API # define LIBMEMCACHED_LOCAL # endif /* defined(_MSC_VER) */ # endif /* defined(BUILDING_LIBMEMCACHED) */ #endif /* defined(BUILDING_LIBMEMCACHEDINTERNAL) */