]> git.ipfire.org Git - thirdparty/squid.git/blob - src/adaptation/icap/Elements.cc
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / adaptation / icap / Elements.cc
1 /*
2 * Copyright (C) 1996-2021 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 "adaptation/icap/Elements.h"
11
12 // TODO: remove this file?
13 namespace Adaptation
14 {
15 namespace Icap
16 {
17
18 const XactOutcome xoUnknown = "ICAP_ERR_UNKNOWN";
19 const XactOutcome xoGone = "ICAP_ERR_GONE";
20 const XactOutcome xoRace = "ICAP_ERR_RACE";
21 const XactOutcome xoError = "ICAP_ERR_OTHER";
22 const XactOutcome xoOpt = "ICAP_OPT";
23 const XactOutcome xoEcho = "ICAP_ECHO";
24 const XactOutcome xoPartEcho = "ICAP_PART_ECHO";
25 const XactOutcome xoModified = "ICAP_MOD";
26 const XactOutcome xoSatisfied = "ICAP_SAT";
27
28 } // namespace Icap
29 } // namespace Adaptation
30