diff options
author | June McEnroe <june@causal.agency> | 2020-12-11 00:35:35 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-02-16 19:34:38 -0500 |
commit | ff0fbe914e2cb10c7df4819a68c5103588abd69f (patch) | |
tree | 2717d66eed50d8e8cff434bbf1f72253c75bddf4 /imap.h | |
parent | Rewrite main loop linearly (diff) | |
download | imbox-ff0fbe914e2cb10c7df4819a68c5103588abd69f.tar.gz imbox-ff0fbe914e2cb10c7df4819a68c5103588abd69f.zip |
Add imapIdle
Handles re-IDLE-ing every 29 minutes and returns the first response it gets.
Diffstat (limited to '')
-rw-r--r-- | imap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/imap.h b/imap.h index 2730d1a..d4cc927 100644 --- a/imap.h +++ b/imap.h @@ -182,5 +182,6 @@ struct IMAP { struct IMAP imapOpen(const char *host, const char *port); struct Resp imapResp(struct IMAP *imap); +struct Resp imapIdle(struct IMAP *imap, enum Atom tag); #endif /* IMAP_H */ |