From 2ccf769eb7c7ec6ef43bea5f3958327df339115e Mon Sep 17 00:00:00 2001 From: Andrew Fort Date: Thu, 5 Feb 2015 13:31:01 -0800 Subject: [PATCH] @2285936 Add missing stub handler for eth_lag_intf_handler --- eth_lag_intf.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/eth_lag_intf.cpp b/eth_lag_intf.cpp index fae71cbe..d099a14e 100644 --- a/eth_lag_intf.cpp +++ b/eth_lag_intf.cpp @@ -6,6 +6,33 @@ namespace eos { +eth_lag_intf_handler::eth_lag_intf_handler(eth_lag_intf_mgr * mgr) : + base_handler(mgr) { +} + +eth_lag_intf_handler::~eth_lag_intf_handler() { +} + +void +eth_lag_intf_handler::watch_all_eth_lag_intfs(bool) { + // TODO: No op impl. +} + +void +eth_lag_intf_handler::watch_eth_lag_intf(intf_id_t, bool) { + // TODO: No op impl. +} + +void +eth_lag_intf_handler::on_lag_member_set(intf_id_t lag, intf_id_t member) { + // TODO: No op impl. +} + +void +eth_lag_intf_handler::on_lag_member_del(intf_id_t lag, intf_id_t member) { + // TODO: No op impl. +} + /// The manager for Lag interface class eth_lag_intf_mgr_impl : public eth_lag_intf_mgr { public: