]> git.ipfire.org Git - thirdparty/squid.git/blob - src/adaptation/icap/Elements.cc
Merged from parent (trunk r10600).
[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 xoError = "ICAP_ERR_OTHER";
12 const XactOutcome xoOpt = "ICAP_OPT";
13 const XactOutcome xoEcho = "ICAP_ECHO";
14 const XactOutcome xoPartEcho = "ICAP_PART_ECHO";
15 const XactOutcome xoModified = "ICAP_MOD";
16 const XactOutcome xoSatisfied = "ICAP_SAT";
17
18 } // namespace Icap
19 } // namespace Adaptation