mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-22 23:07:28 +02:00
12 lines
318 B
C++
12 lines
318 B
C++
![]() |
#include "cxx_include/esp_modem_dte.hpp"
|
||
|
#include "cxx_include/esp_modem_dce.hpp"
|
||
|
#include <string.h>
|
||
|
|
||
|
#include <utility>
|
||
|
#include "esp_log.h"
|
||
|
|
||
|
DCE::DCE(const std::shared_ptr<DTE>& dte, std::shared_ptr<DeviceIf> device, esp_netif_t * netif):
|
||
|
dce_dte(dte), device(std::move(device)), ppp_netif(dte, netif)
|
||
|
{ }
|
||
|
|