blob: 52866e3306e8f7bfcb7eb3996f6cd2f313281feb [file] [log] [blame]
/*
* Copyright (c) 2020 Lemonbeat GmbH
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <net/ppp.h>
void ppp_mgmt_raise_carrier_on_event(struct net_if *iface)
{
net_mgmt_event_notify(NET_EVENT_PPP_CARRIER_ON, iface);
}
void ppp_mgmt_raise_carrier_off_event(struct net_if *iface)
{
net_mgmt_event_notify(NET_EVENT_PPP_CARRIER_OFF, iface);
}