diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-10-09 12:21:51 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-10-09 12:21:51 +0200 |
commit | c0db499f36439269c81c0d83fc4655502985bbc5 (patch) | |
tree | 6014c43afcec291ff11cbcea75320a8af5564cec /fetchmail.h | |
parent | 858d08aeb74c6280ebcc29f6674084f345fdd425 (diff) | |
parent | 269cba9b00fa7ecb0d707ef5b6f10d34e049327c (diff) | |
download | fetchmail-c0db499f36439269c81c0d83fc4655502985bbc5.tar.gz fetchmail-c0db499f36439269c81c0d83fc4655502985bbc5.tar.bz2 fetchmail-c0db499f36439269c81c0d83fc4655502985bbc5.zip |
Merge branch 'master' of gitorious.org:fetchmail/fetchmail
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fetchmail.h b/fetchmail.h index 4ad810a2..f6c6a4ec 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -476,8 +476,8 @@ extern char *sdps_envto; extern const char *iana_charset; /* IANA assigned charset name */ -/* from ucs/norm_charmap.c */ -const char *norm_charmap(const char *name); +/* from/for ucs/norm_charmap.c */ +#include "ucs/norm_charmap.h" /* prototypes for globally callable functions */ @@ -767,6 +767,11 @@ int rfc822_valid_msgid(const unsigned char *); /* prototype from x509_name_match.c */ int name_match(const char *p1, const char *p2); +/* prototype from ntlmsubr.c */ +#ifdef NTLM_ENABLE +int ntlm_helper(int sock, struct query *ctl, const char *protocol); +#endif + /* macro to determine if we want to spam progress to stdout */ #define want_progress() \ ((outlevel >= O_VERBOSE || (outlevel > O_SILENT && run.showdots)) \ |