Server IP : 104.21.38.3 / Your IP : 172.68.164.91 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/programs/ |
Upload File : |
#ifndef MEMCACHED_MOCK_SERVER_H #define MEMCACHED_MOCK_SERVER_H #include <memcached/engine.h> #ifdef __cplusplus extern "C" { #endif struct mock_connstruct { uint64_t magic; const char *uname; const char *config; void *engine_data; bool connected; struct mock_connstruct *next; int sfd; ENGINE_ERROR_CODE status; uint64_t evictions; int nblocks; /* number of ewouldblocks */ bool handle_ewouldblock; pthread_mutex_t mutex; pthread_cond_t cond; }; struct mock_callbacks { EVENT_CALLBACK cb; const void *cb_data; struct mock_callbacks *next; }; struct mock_stats { uint64_t astat; }; MEMCACHED_PUBLIC_API SERVER_HANDLE_V1 *get_mock_server_api(void); MEMCACHED_PUBLIC_API void init_mock_server(ENGINE_HANDLE *server_engine); MEMCACHED_PUBLIC_API struct mock_connstruct *mk_mock_connection(const char *user, const char *config); MEMCACHED_PUBLIC_API const void *create_mock_cookie(void); MEMCACHED_PUBLIC_API void destroy_mock_cookie(const void *cookie); MEMCACHED_PUBLIC_API void mock_set_ewouldblock_handling(const void *cookie, bool enable); MEMCACHED_PUBLIC_API void lock_mock_cookie(const void *cookie); MEMCACHED_PUBLIC_API void unlock_mock_cookie(const void *cookie); MEMCACHED_PUBLIC_API void waitfor_mock_cookie(const void *cookie); MEMCACHED_PUBLIC_API void mock_time_travel(int by); MEMCACHED_PUBLIC_API void disconnect_mock_connection(struct mock_connstruct *c); MEMCACHED_PUBLIC_API void disconnect_all_mock_connections(struct mock_connstruct *c); MEMCACHED_PUBLIC_API void destroy_mock_event_callbacks_rec(struct mock_callbacks *h); MEMCACHED_PUBLIC_API void destroy_mock_event_callbacks(void); #ifdef __cplusplus } #endif #endif /* MEMCACHED_MOCK_SERVER_H */