]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/AnnotateClient.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / acl / AnnotateClient.cc
1 /*
2 * Copyright (C) 1996-2018 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 #include "squid.h"
10 #include "acl/AnnotateClient.h"
11 #include "acl/AnnotationData.h"
12 #include "acl/FilledChecklist.h"
13 #include "client_side.h"
14 #include "http/Stream.h"
15 #include "Notes.h"
16
17 int
18 ACLAnnotateClientStrategy::match(ACLData<MatchType> * &data, ACLFilledChecklist *checklist)
19 {
20 if (const auto conn = checklist->conn()) {
21 ACLAnnotationData *tdata = dynamic_cast<ACLAnnotationData*>(data);
22 assert(tdata);
23 tdata->annotate(conn->notes(), &delimiters.value, checklist->al);
24 if (const auto request = checklist->request)
25 tdata->annotate(request->notes(), &delimiters.value, checklist->al);
26 return 1;
27 }
28 return 0;
29 }
30