Go to the source code of this file.
|
| #define | MODEM_DEV_PPP_DEFINE(_dev, _name, _init_iface, _prio, _mtu, _buf_size) |
| | Define a modem PPP module and bind it to a network interface.
|
| |
| #define | MODEM_DT_INST_PPP_DEFINE(inst, _name, _init_iface, _prio, _mtu, _buf_size) MODEM_DEV_PPP_DEFINE(DEVICE_DT_INST_GET(inst), _name, _init_iface, _prio, _mtu, _buf_size) |
| | Define a modem PPP module for cellular device tree instance.
|
| |
| #define | MODEM_PPP_DEFINE(_name, _init_iface, _prio, _mtu, _buf_size) MODEM_DEV_PPP_DEFINE(NULL, _name, _init_iface, _prio, _mtu, _buf_size) |
| | Define a modem PPP module without a device and bind it to a network interface.
|
| |
|
| int | modem_ppp_attach (struct modem_ppp *ppp, struct modem_pipe *pipe) |
| | Attach pipe to instance and connect.
|
| |
| struct net_if * | modem_ppp_get_iface (struct modem_ppp *ppp) |
| | Get network interface modem PPP instance is bound to.
|
| |
| void | modem_ppp_release (struct modem_ppp *ppp) |
| | Release pipe from instance.
|
| |