diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-11 20:24:31 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-11 20:24:31 +0000 |
commit | 49e1f41ffef6834125db955993f99f1ac17c0bcf (patch) | |
tree | d9f7693d9d2091a4c62538284274a7476c5d0bc2 /fetchmail.h | |
parent | bf10e6bd5289d9bc7ef15d628128cc12b5c1ffe9 (diff) | |
download | fetchmail-49e1f41ffef6834125db955993f99f1ac17c0bcf.tar.gz fetchmail-49e1f41ffef6834125db955993f99f1ac17c0bcf.tar.bz2 fetchmail-49e1f41ffef6834125db955993f99f1ac17c0bcf.zip |
Refactored the Kerberos stuff.
svn path=/trunk/; revision=3066
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index c0f72f69..51d5bfeb 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -518,6 +518,10 @@ int doPOP3 (struct query *); int doIMAP (struct query *); int doETRN (struct query *); +/* authentication functions */ +int do_cram_md5(int sock, char *command, struct query *ctl); +int do_rfc1731(int sock, char *command, char *truename); + /* miscellanea */ struct query *hostalloc(struct query *); int parsecmdline (int, char **, struct runctl *, struct query *); @@ -534,7 +538,6 @@ int is_host_alias(const char *, struct query *); char *host_fqdn(void); char *rfc822timestamp(void); flag isafile(int); -int do_cram_md5 (int sock, char *command, struct query *ctl); void yyerror(const char *); int yylex(void); |