aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-06-27 19:22:33 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-06-27 19:22:33 +0000
commitc4aa3433b8d186e07678a2c40b2a12751fe975cf (patch)
treebf8a6fbeb506587b745985ec79d1c46eac379e17 /fetchmail.h
parentd98d211d8b8832c01d8ccccb501fd419b8f430e1 (diff)
downloadfetchmail-c4aa3433b8d186e07678a2c40b2a12751fe975cf.tar.gz
fetchmail-c4aa3433b8d186e07678a2c40b2a12751fe975cf.tar.bz2
fetchmail-c4aa3433b8d186e07678a2c40b2a12751fe975cf.zip
Sent to ceharris.
svn path=/trunk/; revision=10
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 814605ad..0e85fc8e 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -23,6 +23,9 @@
description: global constant, type, and variable definitions.
$Log: fetchmail.h,v $
+ Revision 1.3 1996/06/27 19:22:33 esr
+ Sent to ceharris.
+
Revision 1.2 1996/06/26 19:08:59 esr
This is what I sent Harris.
@@ -85,6 +88,7 @@
#define PS_SYNTAX 5 /* command-line syntax error */
#define PS_IOERR 6 /* local folder I/O woes */
#define PS_ERROR 7 /* some kind of POP3 error condition */
+#define PS_EXCLUDE 8 /* exclusion error */
#define PS_UNDEFINED 9 /* something I hadn't thought of */
/* output noise level */
@@ -143,6 +147,7 @@ extern int yydebug; /* enable parse debugging */
/* daemon mode control */
extern int poll_interval; /* poll interval in seconds */
extern char *logfile; /* log file for daemon mode */
+extern int quitmode; /* if --quit was set */
extern char *prc_pathname; /* path name of rc file */
@@ -163,7 +168,7 @@ char *MD5Digest (char *);
char *prc_getpathname (struct optrec *cmd_opts, struct optrec *def_opts);
void reply_hack(char *buf, const char *host);
void append_server_names(int *pargc, char **argv);
-int daemonize(const char *logfile);
+int daemonize(const char *logfile, void (*)(void));
#else