]> git.ipfire.org Git - thirdparty/squid.git/blame - src/adaptation/icap/Elements.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / adaptation / icap / Elements.cc
CommitLineData
bbc27441 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
bbc27441
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
582c2af2 9#include "squid.h"
26cc52cb 10#include "adaptation/icap/Elements.h"
774c051c 11
68854a41 12// TODO: remove this file?
e1381638
AJ
13namespace Adaptation
14{
15namespace Icap
16{
3ff65596
AR
17
18const XactOutcome xoUnknown = "ICAP_ERR_UNKNOWN";
07e72f8e 19const XactOutcome xoGone = "ICAP_ERR_GONE";
3f832a99 20const XactOutcome xoRace = "ICAP_ERR_RACE";
3ff65596
AR
21const XactOutcome xoError = "ICAP_ERR_OTHER";
22const XactOutcome xoOpt = "ICAP_OPT";
23const XactOutcome xoEcho = "ICAP_ECHO";
83c51da9 24const XactOutcome xoPartEcho = "ICAP_PART_ECHO";
3ff65596
AR
25const XactOutcome xoModified = "ICAP_MOD";
26const XactOutcome xoSatisfied = "ICAP_SAT";
27
28} // namespace Icap
29} // namespace Adaptation
f53969cc 30