diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-19 02:35:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-19 02:35:32 +0000 |
commit | 9c429358cf6723ae869e9578c89e6c74efdddd77 (patch) | |
tree | 8f07151424a3b523492a893a806376d2e7dc9a61 /fetchmail.h | |
parent | 624b6bec3377d25849725c867d63bf7d98a7aa48 (diff) | |
download | fetchmail-9c429358cf6723ae869e9578c89e6c74efdddd77.tar.gz fetchmail-9c429358cf6723ae869e9578c89e6c74efdddd77.tar.bz2 fetchmail-9c429358cf6723ae869e9578c89e6c74efdddd77.zip |
George Sipe's monitor fixes.
svn path=/trunk/; revision=786
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/fetchmail.h b/fetchmail.h index 2c2fdb1b..4294bf36 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -70,10 +70,10 @@ struct hostdata /* shared among all user connections to given server */ int no_dns; #ifdef linux - char *interface; - char *monitor; - int monitor_io; - struct ipair *inter; + char *interface; + char *monitor; + int monitor_io; + struct interface_pair_s *interface_pair; #endif /* linux */ /* computed for internal use */ @@ -223,7 +223,8 @@ int prc_parse_file(const char *); int prc_filecheck(const char *); void interface_parse(struct hostdata *); -int interface_check(struct hostdata *); +void interface_note_activity(struct hostdata *); +int interface_approve(struct hostdata *); char *getpassword(char *); |