Skip to content

Commit

Permalink
@2285936 Add missing stub handler for eth_lag_intf_handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Fort authored and tsuna committed Feb 15, 2015
1 parent e59d92b commit 2ccf769
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions eth_lag_intf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,33 @@

namespace eos {

eth_lag_intf_handler::eth_lag_intf_handler(eth_lag_intf_mgr * mgr) :
base_handler<eth_lag_intf_mgr, eth_lag_intf_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:
Expand Down

0 comments on commit 2ccf769

Please sign in to comment.