]> git.ipfire.org Git - thirdparty/squid.git/blob - src/adaptation/icap/Elements.cc
Removed squid-old.h
[thirdparty/squid.git] / src / adaptation / icap / Elements.cc
1 #include "squid.h"
2 #include "adaptation/icap/Elements.h"
3
4 // TODO: remove this file?
5 namespace Adaptation
6 {
7 namespace Icap
8 {
9
10 const XactOutcome xoUnknown = "ICAP_ERR_UNKNOWN";
11 const XactOutcome xoGone = "ICAP_ERR_GONE";
12 const XactOutcome xoRace = "ICAP_ERR_RACE";
13 const XactOutcome xoError = "ICAP_ERR_OTHER";
14 const XactOutcome xoOpt = "ICAP_OPT";
15 const XactOutcome xoEcho = "ICAP_ECHO";
16 const XactOutcome xoPartEcho = "ICAP_PART_ECHO";
17 const XactOutcome xoModified = "ICAP_MOD";
18 const XactOutcome xoSatisfied = "ICAP_SAT";
19
20 } // namespace Icap
21 } // namespace Adaptation