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 *)); ...@@ -195,6 +195,7 @@ extern int imap4d_uid __P ((struct imap4d_command *, char *));
195 extern int imap4d_unsubscribe __P ((struct imap4d_command *, char *)); 195 extern int imap4d_unsubscribe __P ((struct imap4d_command *, char *));
196 extern int imap4d_namespace __P ((struct imap4d_command *, char *)); 196 extern int imap4d_namespace __P ((struct imap4d_command *, char *));
197 extern int imap4d_version __P ((struct imap4d_command *, char *)); 197 extern int imap4d_version __P ((struct imap4d_command *, char *));
198 extern int imap4d_idle __P ((struct imap4d_command *, char *));
198 199
199 /* Shared between fetch and store */ 200 /* Shared between fetch and store */
200 extern void fetch_flags0 (const char *prefix, message_t msg, int isuid); 201 extern void fetch_flags0 (const char *prefix, message_t msg, int isuid);
...@@ -273,6 +274,7 @@ void util_get_input __P((stream_t *pstr)); ...@@ -273,6 +274,7 @@ void util_get_input __P((stream_t *pstr));
273 void util_get_output __P((stream_t *pstr)); 274 void util_get_output __P((stream_t *pstr));
274 void util_set_input __P((stream_t str)); 275 void util_set_input __P((stream_t str));
275 void util_set_output __P((stream_t str)); 276 void util_set_output __P((stream_t str));
277 int util_wait_input __P((int));
276 278
277 void util_register_event __P((int old_state, int new_state, 279 void util_register_event __P((int old_state, int new_state,
278 list_action_t *action, void *data)); 280 list_action_t *action, void *data));
......