diff options
author | Michael Larson <slioch@eng-140.vyatta.com> | 2008-02-01 14:32:25 -0800 |
---|---|---|
committer | Michael Larson <slioch@eng-140.vyatta.com> | 2008-02-01 14:32:25 -0800 |
commit | 181b7cc450cc2ad1865d5275a7a2a6b59baf01d2 (patch) | |
tree | 784c7c341ca63736f6fad983c2f7eacf92e10f64 /src/lboutput.hh | |
parent | e150f133e0b982acf67310e926bf10c143838f39 (diff) | |
download | vyatta-wanloadbalance-181b7cc450cc2ad1865d5275a7a2a6b59baf01d2.tar.gz vyatta-wanloadbalance-181b7cc450cc2ad1865d5275a7a2a6b59baf01d2.zip |
init script fix. set up show commands. create output file for wan lb status and provide show status cmd.
Diffstat (limited to 'src/lboutput.hh')
-rw-r--r-- | src/lboutput.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lboutput.hh b/src/lboutput.hh index 33f58bf..1ca2fde 100644 --- a/src/lboutput.hh +++ b/src/lboutput.hh @@ -35,7 +35,7 @@ using namespace std; class LBOutput { public: - LBOutput(bool debug) : _debug(debug) {} + LBOutput(bool debug, string &output_path) : _debug(debug), _output_path(output_path) {} ~LBOutput() {} void @@ -43,6 +43,6 @@ public: private: bool _debug; - + string _output_path; }; #endif //__LBOUTPUT_HH__ |