diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-08-27 17:10:46 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-08-27 17:10:46 +0000 |
commit | 6a145dfedf241d85fb9f1234d760e1f8d6b1e157 (patch) | |
tree | 54d7f74f4094999d06d8bb256d333677f23e571d /fetchmail.h | |
parent | 543380aa15cd07d4e15298312c633d37878fe6cf (diff) | |
download | fetchmail-6a145dfedf241d85fb9f1234d760e1f8d6b1e157.tar.gz fetchmail-6a145dfedf241d85fb9f1234d760e1f8d6b1e157.tar.bz2 fetchmail-6a145dfedf241d85fb9f1234d760e1f8d6b1e157.zip |
Compute FQDN when Kerberos is in use.
svn path=/trunk/; revision=2061
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 aa1c1215..d7bd4142 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -281,6 +281,7 @@ extern char *user; /* name of invoking user */ extern char *home; /* home directory of invoking user */ extern int pass; /* number of re-polling pass */ extern flag configdump; /* dump control blocks as Python dictionary */ +extern char *fetchmailhost; /* either "localhost" or an FQDN */ /* prototypes for globally callable functions */ @@ -384,6 +385,7 @@ char *visbuf(const char *); char *showproto(int); void dump_config(struct runctl *runp, struct query *querylist); int is_host_alias(const char *, struct query *); +char *host_fqdn(void); #ifdef SDPS_ENABLE char *sdps_envto; #endif /* SDPS_ENABLE */ |