]> git.ipfire.org Git - thirdparty/squid.git/blob - src/comm/Makefile.am
Miss if a 304 update would exceed reply_header_max_size (#1420)
[thirdparty/squid.git] / src / comm / Makefile.am
1 ## Copyright (C) 1996-2023 The Squid Software Foundation and contributors
2 ##
3 ## Squid software is distributed under GPLv2+ license and includes
4 ## contributions from numerous individuals and organizations.
5 ## Please see the COPYING and CONTRIBUTORS files for details.
6 ##
7
8 include $(top_srcdir)/src/Common.am
9 include $(top_srcdir)/src/TestHeaders.am
10
11 noinst_LTLIBRARIES = \
12 libcomm.la \
13 libminimal.la
14
15 ## Library holding comm socket handlers
16 libcomm_la_SOURCES = \
17 AcceptLimiter.cc \
18 AcceptLimiter.h \
19 ConnOpener.cc \
20 ConnOpener.h \
21 Connection.cc \
22 Connection.h \
23 Flag.h \
24 IoCallback.cc \
25 IoCallback.h \
26 Loops.h \
27 ModDevPoll.cc \
28 ModEpoll.cc \
29 ModKqueue.cc \
30 ModPoll.cc \
31 ModSelect.cc \
32 ModSelectWin32.cc \
33 Read.cc \
34 Read.h \
35 Tcp.cc \
36 Tcp.h \
37 TcpAcceptor.cc \
38 TcpAcceptor.h \
39 Write.cc \
40 Write.h \
41 comm_internal.h \
42 forward.h
43
44 # a bare-bones implementation of few Comm APIs sufficient for helpers use
45 libminimal_la_SOURCES = \
46 minimal.cc