]> git.ipfire.org Git - thirdparty/squid.git/blame - src/comm/comm_internal.h
Added some class documentation.
[thirdparty/squid.git] / src / comm / comm_internal.h
CommitLineData
04f55905
AJ
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
6struct _fd_debug_t {
7 char const *close_file;
8 int close_line;
9};
10
11typedef struct _fd_debug_t fd_debug_t;
12extern fd_debug_t *fdd_table;
13
14extern bool isOpen(const int fd);
15
16#endif