]> git.ipfire.org Git - thirdparty/squid.git/blame - src/fd.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / fd.h
CommitLineData
fc54b8d2 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
fc54b8d2 3 *
bbc27441
AJ
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.
fc54b8d2
FC
7 */
8
bbc27441
AJ
9/* DEBUG: section 51 Filedescriptor Functions */
10
fc54b8d2
FC
11#ifndef SQUID_FD_H_
12#define SQUID_FD_H_
13
314782d4
FC
14void fd_close(int fd);
15void fd_open(int fd, unsigned int type, const char *);
16void fd_note(int fd, const char *);
17void fd_bytes(int fd, int len, unsigned int type);
18void fdDumpOpen(void);
19int fdUsageHigh(void);
20void fdAdjustReserved(void);
8693472e
CT
21int default_read_method(int, char *, int);
22int default_write_method(int, const char *, int);
fc54b8d2
FC
23
24#endif /* SQUID_FD_H_ */
f53969cc 25