/usr/include/dovecot/userdb-blocking.h is in dovecot-dev 1:2.2.9-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 | #ifndef USERDB_BLOCKING_H
#define USERDB_BLOCKING_H
void userdb_blocking_lookup(struct auth_request *request);
struct userdb_iterate_context *
userdb_blocking_iter_init(struct auth_request *request,
userdb_iter_callback_t *callback, void *context);
void userdb_blocking_iter_next(struct userdb_iterate_context *ctx);
int userdb_blocking_iter_deinit(struct userdb_iterate_context **ctx);
#endif
|