]> git.ipfire.org Git - thirdparty/squid.git/blob - src/comm/comm_internal.h
merge from trunk r13526
[thirdparty/squid.git] / src / comm / comm_internal.h
1 #ifndef SQUID_COMM_COMM_INTERNAL_H
2 #define SQUID_COMM_COMM_INTERNAL_H
3
4 /* misc collection of bits shared by Comm code, but not needed by the rest of Squid. */
5
6 struct _fd_debug_t {
7 char const *close_file;
8 int close_line;
9 };
10
11 typedef struct _fd_debug_t fd_debug_t;
12 extern fd_debug_t *fdd_table;
13
14 bool isOpen(const int fd);
15 void commStopHalfClosedMonitor(int fd);
16
17 #endif