aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-07-03 12:45:18 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-07-03 12:45:18 +0000
commiteb0c61e4812ab19973df9b588f06c9d50a2d038c (patch)
treef15c47e03f5e00823c2b1faa19d03ef2b2706e06 /fetchmail.h
parent3e22607c5ba702824afd838132591123ae6ad9c3 (diff)
downloadfetchmail-eb0c61e4812ab19973df9b588f06c9d50a2d038c.tar.gz
fetchmail-eb0c61e4812ab19973df9b588f06c9d50a2d038c.tar.bz2
fetchmail-eb0c61e4812ab19973df9b588f06c9d50a2d038c.zip
Got rid of line limit member.
svn path=/trunk/; revision=31
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/fetchmail.h b/fetchmail.h
index d3a09299..7f70e9a4 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -81,17 +81,19 @@ struct prc_server {
};
-/* Controls the detail of status/progress messages written to stderr */
-extern int outlevel; /* see the O_.* constants above */
-extern int yydebug; /* enable parse debugging */
-extern int versioninfo; /* emit only version info */
+/* controls the detail level of status/progress messages written to stderr */
+extern int outlevel; /* see the O_.* constants above */
+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 */
+/* miscellaneous global controls */
extern char *poprcfile; /* path name of rc file */
+extern int linelimit; /* limit # lines retrieved per site */
+extern int versioninfo; /* emit only version info */
#ifdef HAVE_PROTOTYPES