]> git.ipfire.org Git - thirdparty/squid.git/blob - src/comm/Flag.h
Bug 5428: Warn if pkg-config is not found (#1902)
[thirdparty/squid.git] / src / comm / Flag.h
1 /*
2 * Copyright (C) 1996-2023 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 #ifndef SQUID_SRC_COMM_FLAG_H
10 #define SQUID_SRC_COMM_FLAG_H
11
12 namespace Comm
13 {
14
15 typedef enum {
16 OK = 0,
17 COMM_ERROR = -1,
18 TIMEOUT = -4,
19 SHUTDOWN = -5,
20 IDLE = -6, /* there are no active fds and no pending callbacks. */
21 INPROGRESS = -7,
22 ERR_CONNECT = -8,
23 ERR_DNS = -9,
24 ERR_CLOSING = -10,
25 ERR_PROTOCOL = -11, /* IPv4 or IPv6 cannot be used on the fd socket */
26 ENDFILE = -12, /**< read(2) returned success, but with 0 bytes */
27 ERR__END__ = -999999 /* Dummy entry to make syntax valid (comma on line above), do not use. New entries added above */
28 } Flag;
29
30 } // namespace Comm
31
32 #endif /* SQUID_SRC_COMM_FLAG_H */
33