diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-02-11 09:20:13 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-02-11 09:20:13 +0000 |
commit | caabfa5d935ae2799e9830f70ac68ea69443ac8e (patch) | |
tree | 31c028c4affcbf8dadc0cc0357aaff8fa555b1a7 /fetchmail.h | |
parent | 5fb0e8ec3adf0cbd7f82e638858c6e8a5ee13290 (diff) | |
download | fetchmail-caabfa5d935ae2799e9830f70ac68ea69443ac8e.tar.gz fetchmail-caabfa5d935ae2799e9830f70ac68ea69443ac8e.tar.bz2 fetchmail-caabfa5d935ae2799e9830f70ac68ea69443ac8e.zip |
Trivalent options.
svn path=/trunk/; revision=864
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/fetchmail.h b/fetchmail.h index c43bfee2..baba9198 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -47,6 +47,10 @@ #define SIZETICKER 1024 /* print 1 dot per this many bytes */ +/* we need to use zero as a flag-uninitialized value */ +#define FLAG_TRUE 2 +#define FLAG_FALSE 1 + struct idlist { char *id; @@ -70,7 +74,7 @@ struct hostdata /* shared among all user connections to given server */ int timeout; char *envelope; int skip; - int no_dns; + int dns; #ifdef linux char *interface; @@ -106,7 +110,7 @@ struct query int keep; int fetchall; int flush; - int no_rewrite; + int rewrite; int stripcr; int limit; int fetchlimit; |