From f7548d6d28c313cf80e6f3ef89aed16a19815df1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:51:24 +0200 Subject: Adding upstream version 1:2.3.19.1+dfsg1. Signed-off-by: Daniel Baumann --- src/imap/imap-common.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/imap/imap-common.h (limited to 'src/imap/imap-common.h') diff --git a/src/imap/imap-common.h b/src/imap/imap-common.h new file mode 100644 index 0000000..1609a8b --- /dev/null +++ b/src/imap/imap-common.h @@ -0,0 +1,40 @@ +#ifndef IMAP_COMMON_H +#define IMAP_COMMON_H + +/* Disconnect client after idling this many milliseconds */ +#define CLIENT_IDLE_TIMEOUT_MSECS (60*30*1000) + +/* If we can't send anything to client for this long, disconnect the client */ +#define CLIENT_OUTPUT_TIMEOUT_MSECS (5*60*1000) + +/* Stop buffering more data into output stream after this many bytes */ +#define CLIENT_OUTPUT_OPTIMAL_SIZE 2048 + +/* Disconnect client when it sends too many bad commands in a row */ +#define CLIENT_MAX_BAD_COMMANDS 20 + +#include "lib.h" +#include "imap-client.h" +#include "imap-settings.h" + +struct mail_storage_service_input; + +typedef void imap_client_created_func_t(struct client **client); + +extern imap_client_created_func_t *hook_client_created; +extern bool imap_debug; +extern struct event_category event_category_imap; + +/* Sets the hook_client_created and returns the previous hook, + which the new_hook should call if it's non-NULL. */ +imap_client_created_func_t * ATTR_NOWARN_UNUSED_RESULT +imap_client_created_hook_set(imap_client_created_func_t *new_hook); + +void imap_refresh_proctitle(void); +void imap_refresh_proctitle_delayed(void); + +int client_create_from_input(const struct mail_storage_service_input *input, + int fd_in, int fd_out, struct client **client_r, + const char **error_r); + +#endif -- cgit v1.2.3