diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-05 18:06:48 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-05 18:06:48 +0000 |
commit | b2cf82ab2b395215a0214833a77f46b871fc5114 (patch) | |
tree | c1d1922c74b527381c7130db8d3c404335b42df8 /fetchmail.h | |
parent | 68c3f1308db0fd8a62855d812fbd34c0a80fb35d (diff) | |
download | fetchmail-b2cf82ab2b395215a0214833a77f46b871fc5114.tar.gz fetchmail-b2cf82ab2b395215a0214833a77f46b871fc5114.tar.bz2 fetchmail-b2cf82ab2b395215a0214833a77f46b871fc5114.zip |
Abstract out host allocation.
svn path=/trunk/; revision=229
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 caa6fee2..cc25f178 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -127,6 +127,7 @@ int doPOP2 (struct hostrec *); int doPOP3 (struct hostrec *); int doIMAP (struct hostrec *); +struct hostrec *hostalloc(struct hostrec *); int parsecmdline (int, char **, struct hostrec *); void optmerge(struct hostrec *, struct hostrec *); char *MD5Digest (char *); @@ -135,6 +136,7 @@ int daemonize(const char *, void (*)(int)); #else +struct hostrec *hostinit(); char *MD5Digest (); void optmerge(); |