2 * Copyright (C) 1996-2025 The Squid Software Foundation and contributors
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.
10 \defgroup POD POD Classes
13 * Classes which encapsulate POD (plain old data) in such a way
14 * that they can be used as POD themselves and passed around Squid.
15 * These objects should have a formal API for safe handling of their
16 * content, but it MUST NOT depend on any externality than itself
17 * or the standard C++ libraries.
21 \defgroup Components Squid Components
25 \defgroup ServerProtocol Server-Side Protocols
28 * These routines are responsible for forwarding cache misses
29 * to other servers, depending on the protocol. Cache misses
30 * may be forwarded to either origin servers, or other proxy
32 * All requests to other proxies are sent as HTTP requests.
33 * All requests to origin-server are sent in that servers protocol.
37 \defgroup libsquid Squid Library
40 * These objects are provided publicly through lidsquid.la
44 \defgroup Tests Unit Testing
47 * Any good application has a set of tests to ensure it stays
48 * in a good condition. Squid tends to use cppunit tests.
50 * It is preferable to automated tests for units of functionality. There
51 * is a boilerplate for tests in "src/tests/testBoilerplate.[cc|h]". New
52 * tests need to be added to src/Makefile.am to build and run them during
53 * "make check". To add a new test script, just copy the references to
54 * testBoilerplate in Makefile.am adjusting the name, and likewise copy the
55 * source files. If you are testing an already tested area you may be able
56 * to just add new test cases to an existing script. I.e. to test the store
57 * some more just edit tests/testStore.h and add a new unit test method
62 \defgroup Callbacks Event Callback Functions
65 * Squid uses events to process asynchronous actions.
66 * These methods are registered as callbacks to receive notice whenever a
67 * specific event occurs.
71 \defgroup Timeouts Timeouts
72 * TODO: Write Documentation about Timeouts.
76 \defgroup ServerProtocolHTTP HTTP
77 \ingroup ServerProtocol
78 * TODO: Write Documentation about HTTP.
82 \defgroup ServerProtocolFTPAPI Server-Side FTP API
83 \ingroup ServerProtocol
87 \defgroup ServerProtocolWAIS WAIS
88 \ingroup ServerProtocol
89 * TODO: Write Documentation about Wais.
93 \defgroup ServerProtocolPassthru Passthru
94 \ingroup ServerProtocol
95 * TODO: Write Documentation about Passthru.