]> git.ipfire.org Git - thirdparty/squid.git/blob - src/fd.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / fd.h
1 /*
2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 /* DEBUG: section 51 Filedescriptor Functions */
10
11 #ifndef SQUID_FD_H_
12 #define SQUID_FD_H_
13
14 void fd_close(int fd);
15 void fd_open(int fd, unsigned int type, const char *);
16 void fd_note(int fd, const char *);
17 void fd_bytes(int fd, int len, unsigned int type);
18 void fdDumpOpen(void);
19 int fdUsageHigh(void);
20 void fdAdjustReserved(void);
21 int default_read_method(int, char *, int);
22 int default_write_method(int, const char *, int);
23
24 #endif /* SQUID_FD_H_ */
25