Commit 3b3e96af 3b3e96afa32e4555b99372e3dbaffd7faf4da5cc by Sergey Poznyakoff

(imap4d_idle, util_wait_input): New functions.

1 parent 8c950e5c
......@@ -195,6 +195,7 @@ extern int imap4d_uid __P ((struct imap4d_command *, char *));
extern int imap4d_unsubscribe __P ((struct imap4d_command *, char *));
extern int imap4d_namespace __P ((struct imap4d_command *, char *));
extern int imap4d_version __P ((struct imap4d_command *, char *));
extern int imap4d_idle __P ((struct imap4d_command *, char *));
/* Shared between fetch and store */
extern void fetch_flags0 (const char *prefix, message_t msg, int isuid);
......@@ -273,6 +274,7 @@ void util_get_input __P((stream_t *pstr));
void util_get_output __P((stream_t *pstr));
void util_set_input __P((stream_t str));
void util_set_output __P((stream_t str));
int util_wait_input __P((int));
void util_register_event __P((int old_state, int new_state,
list_action_t *action, void *data));
......