diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-24 18:04:26 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-24 18:04:26 +0000 |
commit | 316a8e45348c993fbb4c2c00f3d3c4812b4c6620 (patch) | |
tree | 099efb90c77a961cb81209acbe59c3e76c65df25 /fetchmail.h | |
parent | 69e1d6afc48b5a7d7f3b5c89bd3778620ae00b0b (diff) | |
download | fetchmail-316a8e45348c993fbb4c2c00f3d3c4812b4c6620.tar.gz fetchmail-316a8e45348c993fbb4c2c00f3d3c4812b4c6620.tar.bz2 fetchmail-316a8e45348c993fbb4c2c00f3d3c4812b4c6620.zip |
Moved the protocol designation definition.
svn path=/trunk/; revision=119
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index b4391226..d1186803 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -11,7 +11,13 @@ ***********************************************************************/ - +/* constants designating the various supported protocols */ +#define P_AUTO 0 +#define P_POP2 2 +#define P_POP3 3 +#define P_IMAP 4 +#define P_APOP 5 +#define P_RPOP 6 /* definitions for buffer sizes -- somewhat arbitrary */ #define POPBUFSIZE 512 /* per RFC 937 */ |