aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-07-04 15:39:33 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-07-04 15:39:33 +0000
commit3fdc882c9627f13b63eb087c71e96caf045da05d (patch)
tree6644b48a9142277f5bf35a8c4f036df710a3d442 /fetchmail.h
parent2afc40a88856ba00c517ca9d58ec834a3492aa91 (diff)
downloadfetchmail-3fdc882c9627f13b63eb087c71e96caf045da05d.tar.gz
fetchmail-3fdc882c9627f13b63eb087c71e96caf045da05d.tar.bz2
fetchmail-3fdc882c9627f13b63eb087c71e96caf045da05d.zip
Move environment query stuff to env.c.
svn path=/trunk/; revision=1151
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h
index a903134c..30b848e3 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -166,6 +166,10 @@ extern char tag[TAGLEN];
/* list of hosts assembled from run control file and command line */
extern struct query cmd_opts, *querylist;
+/* what's returned by envquery */
+extern void envquery(int, char **);
+char *user, *home, *fetchmailhost;
+
/* 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 */
@@ -220,6 +224,7 @@ int doETRN (struct query *);
void reply_hack(char *, const char *);
char *nxtaddr(const char *);
+/* UID support */
void initialize_saved_lists(struct query *, const char *);
struct idlist *save_str(struct idlist **, int, const char *);
void free_str_list(struct idlist **);
@@ -249,6 +254,7 @@ int interface_approve(struct hostdata *);
char *getpassword(char *);
void escapes(const char *, char *);
+char *showproto(int);
void yyerror(const char *);
int yylex(void);