Linux ih01.iridiumhosting.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.208
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
libmemcached-1.0 /
Delete
Unzip
Name
Size
Permission
Date
Action
struct
[ DIR ]
drwxr-xr-x
2024-04-03 09:11
types
[ DIR ]
drwxr-xr-x
2024-04-03 09:11
alloc.h
1.47
KB
-rw-r--r--
2021-06-23 12:14
allocators.h
1.76
KB
-rw-r--r--
2021-06-23 12:14
analyze.h
1.26
KB
-rw-r--r--
2021-06-23 12:14
auto.h
3.54
KB
-rw-r--r--
2021-06-23 12:14
basic_string.h
1.3
KB
-rw-r--r--
2021-06-23 12:14
behavior.h
2.44
KB
-rw-r--r--
2021-06-23 12:14
callback.h
1.29
KB
-rw-r--r--
2021-06-23 12:14
callbacks.h
1.67
KB
-rw-r--r--
2021-06-23 12:14
configure.h
1.22
KB
-rw-r--r--
2022-02-11 21:09
defaults.h
1.71
KB
-rw-r--r--
2021-06-23 12:14
delete.h
1.39
KB
-rw-r--r--
2021-06-23 12:14
deprecated_types.h
1.72
KB
-rw-r--r--
2021-06-23 12:14
dump.h
1.14
KB
-rw-r--r--
2021-06-23 12:14
encoding_key.h
1.08
KB
-rw-r--r--
2021-06-23 12:14
error.h
1.53
KB
-rw-r--r--
2021-06-23 12:14
exception.hpp
1.76
KB
-rw-r--r--
2021-06-23 12:14
exist.h
1.32
KB
-rw-r--r--
2021-06-23 12:14
fetch.h
1.16
KB
-rw-r--r--
2021-06-23 12:14
flush.h
1.06
KB
-rw-r--r--
2021-06-23 12:14
flush_buffers.h
1.04
KB
-rw-r--r--
2021-06-23 12:14
get.h
3.07
KB
-rw-r--r--
2021-06-23 12:14
hash.h
1.58
KB
-rw-r--r--
2021-06-23 12:14
limits.h
1.38
KB
-rw-r--r--
2021-06-23 12:14
memcached.h
4.3
KB
-rw-r--r--
2021-06-23 12:14
memcached.hpp
23.88
KB
-rw-r--r--
2021-06-23 12:14
options.h
1.17
KB
-rw-r--r--
2021-06-23 12:14
parse.h
1.06
KB
-rw-r--r--
2021-06-23 12:14
platform.h
1.75
KB
-rw-r--r--
2021-06-23 12:14
quit.h
1.02
KB
-rw-r--r--
2021-06-23 12:14
result.h
2.24
KB
-rw-r--r--
2021-06-23 12:14
return.h
2.18
KB
-rw-r--r--
2021-06-23 12:14
sasl.h
1.6
KB
-rw-r--r--
2021-06-23 12:14
server.h
3.62
KB
-rw-r--r--
2021-06-23 12:14
server_list.h
1.95
KB
-rw-r--r--
2021-06-23 12:14
stats.h
1.9
KB
-rw-r--r--
2021-06-23 12:14
storage.h
4.66
KB
-rw-r--r--
2021-06-23 12:14
strerror.h
1.06
KB
-rw-r--r--
2021-06-23 12:14
touch.h
1.39
KB
-rw-r--r--
2021-06-23 12:14
triggers.h
1.82
KB
-rw-r--r--
2021-06-23 12:14
types.h
2.27
KB
-rw-r--r--
2021-06-23 12:14
verbosity.h
1.06
KB
-rw-r--r--
2021-06-23 12:14
version.h
1.1
KB
-rw-r--r--
2021-06-23 12:14
visibility.h
2.64
KB
-rw-r--r--
2021-06-23 12:14
Save
Rename
/* +--------------------------------------------------------------------+ | libmemcached-awesome - C/C++ Client Library for memcached | +--------------------------------------------------------------------+ | Redistribution and use in source and binary forms, with or without | | modification, are permitted under the terms of the BSD license. | | You should have received a copy of the license in a bundled file | | named LICENSE; in case you did not receive a copy you can review | | the terms online at: https://opensource.org/licenses/BSD-3-Clause | +--------------------------------------------------------------------+ | Copyright (c) 2006-2014 Brian Aker https://datadifferential.com/ | | Copyright (c) 2020-2021 Michael Wallner https://awesome.co/ | +--------------------------------------------------------------------+ */ #pragma once #include "libmemcached-1.0/configure.h" /* This seems to be required for older compilers @note * http://stackoverflow.com/questions/8132399/how-to-printf-uint64-t */ #ifndef __STDC_FORMAT_MACROS # define __STDC_FORMAT_MACROS #endif #ifdef __cplusplus # include <cinttypes> # include <cstddef> # include <cstdlib> #else # include <inttypes.h> # include <stddef.h> # include <stdlib.h> # include <stdbool.h> #endif #include <sys/types.h> #if defined HAVE_NETDB_H # include <netdb.h> #endif #if !defined HAVE_IN_PORT_T typedef int in_port_t; #endif #if !defined HAVE_PID_T typedef int pid_t; #endif #ifndef HAVE_SSIZE_T typedef long int ssize_t; #endif #if defined _WIN32 # define WINVER 0x0600 # define _WIN32_WINNT 0x0600 # include <winsock2.h> # include <ws2tcpip.h> typedef SOCKET memcached_socket_t; #else typedef int memcached_socket_t; #endif // _WIN32