aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2016-12-12 02:55:20 +0100
committerMatthias Andree <matthias.andree@gmx.de>2016-12-12 02:55:20 +0100
commita3c08a3c2eb026a582575dee047f13781d1d4d83 (patch)
tree8948755a6dd83085ab67c406bf6e4ee8bd38e535 /fetchmail.h
parent00772c13773cb20747fb7a1d590218cd46646b82 (diff)
parent0aeab1198903075c1e4d1cee5dda2322d22a7955 (diff)
downloadfetchmail-a3c08a3c2eb026a582575dee047f13781d1d4d83.tar.gz
fetchmail-a3c08a3c2eb026a582575dee047f13781d1d4d83.tar.bz2
fetchmail-a3c08a3c2eb026a582575dee047f13781d1d4d83.zip
Merge branch 'uidl-speedup-n-log-n-64' into legacy_64
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/fetchmail.h b/fetchmail.h
index f14d51d4..98f07742 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -39,6 +39,8 @@ struct addrinfo;
# include "trio/trio.h"
#endif
+#include "uid_db.h"
+
/* We need this for strstr */
#if !defined(HAVE_STRSTR) && !defined(strstr)
char *strstr(const char *, const char *);
@@ -389,8 +391,7 @@ struct query
int smtp_socket; /* socket descriptor for SMTP connection */
unsigned int uid; /* UID of user to deliver to */
struct idlist *skipped; /* messages skipped on the mail server */
- struct idlist *oldsaved, *newsaved;
- struct idlist **oldsavedend;
+ struct uid_db oldsaved, newsaved;
char lastdigest[DIGESTLEN]; /* last MD5 hash seen on this connection */
char *folder; /* folder currently being polled */