summaryrefslogtreecommitdiff
path: root/src/lbdecision.hh
diff options
context:
space:
mode:
authorslioch <slioch@eng-140.vyatta.com>2008-09-25 12:13:25 -0700
committerslioch <slioch@eng-140.vyatta.com>2008-09-25 12:13:25 -0700
commitbdf25c7abb889b44dc9728a3abe8e153bd828324 (patch)
tree0dcdbb6dc99c61b7251896943b61ff336e0706fc /src/lbdecision.hh
parent9be5bc2b6f7094cd54366aeea659be899cf0122b (diff)
downloadvyatta-wanloadbalance-bdf25c7abb889b44dc9728a3abe8e153bd828324.tar.gz
vyatta-wanloadbalance-bdf25c7abb889b44dc9728a3abe8e153bd828324.zip
fix for bug 3710. also found and fixed another bug with restarting of wlb after changing rule set. this simplifies the application of the rules to
the mangle table.
Diffstat (limited to 'src/lbdecision.hh')
-rw-r--r--src/lbdecision.hh7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/lbdecision.hh b/src/lbdecision.hh
index 76869fa..abac5db 100644
--- a/src/lbdecision.hh
+++ b/src/lbdecision.hh
@@ -17,10 +17,6 @@ using namespace std;
class LBDecision
{
public:
- typedef map<string,int> InterfaceMarkColl;
- typedef map<string,int>::iterator InterfaceMarkIter;
-
-public:
LBDecision(bool debug);
~LBDecision();
@@ -31,7 +27,7 @@ public:
run(LBData &lbdata);
void
- shutdown();
+ shutdown(LBData &lbdata);
private:
int
@@ -51,7 +47,6 @@ private:
private:
bool _debug;
- InterfaceMarkColl _iface_mark_coll;
};
#endif //__LBDECISION_HH__