From: Amos Jeffries Date: Mon, 19 Apr 2010 09:32:40 +0000 (+1200) Subject: Add Ip namespace to stubQosConfig file X-Git-Tag: SQUID_3_2_0_1~289 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3470fc919cadbd330ff0e90e1dfb4351b7c68f4b;p=thirdparty%2Fsquid.git Add Ip namespace to stubQosConfig file TODO: stub seems not to be used now that teh SqudiConfig link is removed. updatign it and keeping anyway in case future unit tests need it. --- diff --git a/src/ip/stubQosConfig.cc b/src/ip/stubQosConfig.cc index 458f655734..3af90bf1e1 100644 --- a/src/ip/stubQosConfig.cc +++ b/src/ip/stubQosConfig.cc @@ -2,10 +2,10 @@ #if USE_ZPH_QOS -#include "QosConfig.h" +#include "ip/QosConfig.h" #include "Store.h" -QosConfig::QosConfig() : +Ip::QosConfig::QosConfig() : tos_local_hit(0), tos_sibling_hit(0), tos_parent_hit(0), @@ -16,7 +16,7 @@ QosConfig::QosConfig() : } void -QosConfig::parseConfigLine() +Ip::QosConfig::parseConfigLine() { // %i honors 0 and 0x prefixes, which are important for things like umask /* parse options ... */ @@ -39,7 +39,7 @@ QosConfig::parseConfigLine() } void -QosConfig::dumpConfigLine(char *entry, const char *name) const +Ip::QosConfig::dumpConfigLine(char *entry, const char *name) const { ; /* Not needed in stub */ }