]> git.ipfire.org Git - thirdparty/squid.git/blame - doc/Programming-Guide/AccessControls.dox
Source Format Enforcement (#763)
[thirdparty/squid.git] / doc / Programming-Guide / AccessControls.dox
CommitLineData
f2a134b9 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
f2a134b9
AJ
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
8b651fb3 9/**
10\defgroup ACLAPI Access Controls
11\ingroup Components
12
13\par
14 These functions are responsible for allowing or denying a
15 request, based on a number of different parameters. These
16 parameters include the client's IP address, the hostname
17 of the requested resource, the request method, etc. Some
18 of the necessary information may not be immediately available,
19 for example the origin server's IP address. In these cases,
20 the ACL routines initiate lookups for the necessary
21 information and continues the access control checks when
22 the information is available.
23
24 */