view src/lib/hook-build.h @ 22656:1789bf2a1e01

director: Make sure HOST-RESET-USERS isn't used with max_moving_users=0 The reset command would just hang in that case. doveadm would never have sent this, so this is just an extra sanity check.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Sun, 05 Nov 2017 23:51:56 +0200
parents 538853d82926
children cb108f786fb4
line wrap: on
line source

/* Copyright (c) 2017 Dovecot authors, see the included COPYING file */
#ifndef HOOK_BUILD_H
#define HOOK_BUILD_H 1

struct hook_build_context;
struct hook_stack;

/* Initialize new hook building context, vfuncs should point to
   the functions table that is being manipulated, and size should be
   the size of this table. */
struct hook_build_context *hook_build_init(void (**vfuncs)(), size_t size);

/* This is called after a hook may have updated vfuncs */
void hook_build_update(struct hook_build_context *ctx, void *_vlast);

/* Free memory used by build context */
void hook_build_deinit(struct hook_build_context **_ctx);

#endif