]> git.ipfire.org Git - thirdparty/squid.git/blame - src/adaptation/icap/Elements.cc
Renamed squid.h to squid-old.h and config.h to squid.h
[thirdparty/squid.git] / src / adaptation / icap / Elements.cc
CommitLineData
f7f3304a 1#include "squid-old.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";
07e72f8e 11const XactOutcome xoGone = "ICAP_ERR_GONE";
3f832a99 12const XactOutcome xoRace = "ICAP_ERR_RACE";
3ff65596
AR
13const XactOutcome xoError = "ICAP_ERR_OTHER";
14const XactOutcome xoOpt = "ICAP_OPT";
15const XactOutcome xoEcho = "ICAP_ECHO";
83c51da9 16const XactOutcome xoPartEcho = "ICAP_PART_ECHO";
3ff65596
AR
17const XactOutcome xoModified = "ICAP_MOD";
18const XactOutcome xoSatisfied = "ICAP_SAT";
19
20} // namespace Icap
21} // namespace Adaptation