/usr/include/dovecot/doveadm-util.h is in dovecot-dev 1:2.2.22-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #ifndef DOVEADM_UTIL_H
#define DOVEADM_UTIL_H
#include "net.h"
#define DOVEADM_SERVER_PROTOCOL_VERSION_MAJOR 1
extern bool doveadm_verbose, doveadm_debug, doveadm_server;
const char *unixdate2str(time_t timestamp);
const char *doveadm_plugin_getenv(const char *name);
int doveadm_connect(const char *path);
int doveadm_tcp_connect(const char *target, in_port_t default_port);
int doveadm_connect_with_default_port(const char *path,
in_port_t default_port);
void doveadm_load_modules(void);
void doveadm_unload_modules(void);
bool doveadm_has_unloaded_plugin(const char *name);
/* Similar to strcmp(), except "camel case" == "camel-case" == "camelCase".
Otherwise the comparison is case-sensitive. */
int i_strccdascmp(const char *a, const char *b) ATTR_PURE;
#endif
|