diff options
author | Brandon Stepler <brandon@stepler.net> | 2021-03-11 09:40:00 -0500 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-03-19 19:39:05 +0100 |
commit | 1411a20829b8865b72058129dcbf19ae04a64dc1 (patch) | |
tree | ec5db758a900a6e25d7a93f767a39ae41ce4e4c0 | |
parent | 650928ab63c264cdbb065190a4070070f0f91d1b (diff) | |
download | vyatta-wanloadbalance-1411a20829b8865b72058129dcbf19ae04a64dc1.tar.gz vyatta-wanloadbalance-1411a20829b8865b72058129dcbf19ae04a64dc1.zip |
wanloadbalance: T3395: fix ICMP status line
(cherry picked from commit 3070ad266493e1340a53448a21f592c5d0cf8a50)
-rw-r--r-- | src/lbtest_icmp.cc | 11 | ||||
-rw-r--r-- | src/lbtest_icmp.hh | 3 |
2 files changed, 0 insertions, 14 deletions
diff --git a/src/lbtest_icmp.cc b/src/lbtest_icmp.cc index 5bdc14d..743895c 100644 --- a/src/lbtest_icmp.cc +++ b/src/lbtest_icmp.cc @@ -173,17 +173,6 @@ LBTestICMP::send(int send_sock, const string &iface, const string &target_addr, } } -/** - * - * - **/ -string -LBTestICMP::status() -{ - //set the status line to be used when the show command is invoked - return name() + "\t" + string("Target: ") + _target; -} - /** diff --git a/src/lbtest_icmp.hh b/src/lbtest_icmp.hh index 2de9115..e081f49 100644 --- a/src/lbtest_icmp.hh +++ b/src/lbtest_icmp.hh @@ -38,9 +38,6 @@ public: string name() {return string("ping");} - string - status(); - private: void send(int sock, const string &iface, const string &target_addr, int packet_id); |