| Server IP : 216.92.14.13 / Your IP : 216.73.216.171 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/include/dovecot/ |
Upload File : |
#ifndef IPC_CLIENT_H
#define IPC_CLIENT_H
enum ipc_client_cmd_state {
IPC_CLIENT_CMD_STATE_REPLY,
IPC_CLIENT_CMD_STATE_OK,
IPC_CLIENT_CMD_STATE_ERROR
};
typedef void ipc_client_callback_t(enum ipc_client_cmd_state state,
const char *data, void *context);
struct ipc_client *
ipc_client_init(const char *ipc_socket_path);
void ipc_client_deinit(struct ipc_client **client);
struct ipc_client_cmd *
ipc_client_cmd(struct ipc_client *client, const char *cmd,
ipc_client_callback_t *callback, void *context)
ATTR_NULL(4);
void ipc_client_cmd_abort(struct ipc_client *client,
struct ipc_client_cmd **cmd);
#endif