diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-05-28 20:41:37 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-05-28 20:41:37 +0000 |
commit | 93d237073e72102640dcf3442d1887d69776921c (patch) | |
tree | c64e4e542297d625dad8cd7921822fbd4dd8913e /fetchmail.h | |
parent | d6fe2a5f48e069fe423b12f2e163589194115dc0 (diff) | |
download | fetchmail-93d237073e72102640dcf3442d1887d69776921c.tar.gz fetchmail-93d237073e72102640dcf3442d1887d69776921c.tar.bz2 fetchmail-93d237073e72102640dcf3442d1887d69776921c.zip |
Added the interval option.
svn path=/trunk/; revision=1040
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h index 53f4ffa8..689a5843 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -72,6 +72,7 @@ struct hostdata /* shared among all user connections to given server */ struct idlist *localdomains; /* list of pass-through domains */ int protocol; int port; + int interval; int authenticate; int timeout; char *envelope; @@ -87,6 +88,7 @@ struct hostdata /* shared among all user connections to given server */ #endif /* linux */ /* computed for internal use */ + int poll_count; /* count of polls so far */ #ifdef HAVE_GETHOSTBYNAME char *canonical_name; /* DNS canonical name of server host */ #endif /* HAVE_GETHOSTBYNAME */ |