]> git.ipfire.org Git - thirdparty/squid.git/blame - src/adaptation/icap/Elements.cc
Author: Tsantilas Christos <chtsanti@users.sourceforge.net> , Alex Rousskov <rousskov...
[thirdparty/squid.git] / src / adaptation / icap / Elements.cc
CommitLineData
774c051c 1#include "squid.h"
26cc52cb 2#include "adaptation/icap/Elements.h"
774c051c 3
68854a41 4// TODO: remove this file?
e1381638
AJ
5namespace Adaptation
6{
7namespace Icap
8{
3ff65596
AR
9
10const XactOutcome xoUnknown = "ICAP_ERR_UNKNOWN";
11const XactOutcome xoError = "ICAP_ERR_OTHER";
12const XactOutcome xoOpt = "ICAP_OPT";
13const XactOutcome xoEcho = "ICAP_ECHO";
83c51da9 14const XactOutcome xoPartEcho = "ICAP_PART_ECHO";
3ff65596
AR
15const XactOutcome xoModified = "ICAP_MOD";
16const XactOutcome xoSatisfied = "ICAP_SAT";
17
18} // namespace Icap
19} // namespace Adaptation