esp8266ndn
NDN Arduino library for ESP8266 and more
|
A transport that communicates over Ethernet. More...
#include <ethernet-transport.hpp>
Inherits ndnph::transport::Transport, and ndnph::transport::DynamicRxQueueMixin.
Public Member Functions | |
EthernetTransport () | |
~EthernetTransport () override | |
bool | begin (const char ifname[2], uint8_t ifnum) |
Start intercepting NDN packets on a network interface. More... | |
bool | begin () |
Start intercepting NDN packets on first available station interface. More... | |
void | end () |
Disable the transport. More... | |
![]() | |
virtual | ~Transport ()=default |
bool | isUp () const |
Determine whether transport is connected. More... | |
void | loop () |
Process periodical events, such as receiving packets. More... | |
void | setRxCallback (RxCallback cb, void *ctx) |
Set incoming packet callback. More... | |
bool | send (const uint8_t *pkt, size_t pktLen, uint64_t endpointId=0) |
Synchronously transmit a packet. More... | |
Static Public Member Functions | |
static void | listNetifs (Print &os) |
Print a list of network interfaces. More... | |
Additional Inherited Members | |
![]() | |
using | RxCallback = void(*)(void *ctx, const uint8_t *pkt, size_t pktLen, uint64_t endpointId) |
![]() | |
static constexpr size_t | DEFAULT_BUFLEN = 1500 |
![]() | |
void | invokeRxCallback (const uint8_t *pkt, size_t pktLen, uint64_t endpointId=0) |
Invoke incoming packet callback for a received packet. More... | |
![]() | |
DynamicRxQueueMixin (size_t bufLen=DEFAULT_BUFLEN) | |
Constructor. More... | |
![]() | |
template<typename F > | |
void | initAllocBuffers (const F &makeRegion) |
Allocate receive buffers during initialization. More... | |
RxContext | receiving () |
Receive packets in a loop. More... | |
void | loopRxQueue () |
Process periodical events. More... | |
A transport that communicates over Ethernet.
esp8266ndn::EthernetTransport::EthernetTransport | ( | ) |
|
override |
bool esp8266ndn::EthernetTransport::begin | ( | ) |
Start intercepting NDN packets on first available station interface.
bool esp8266ndn::EthernetTransport::begin | ( | const char | ifname[2], |
uint8_t | ifnum | ||
) |
Start intercepting NDN packets on a network interface.
void esp8266ndn::EthernetTransport::end | ( | ) |
Disable the transport.
|
static |
Print a list of network interfaces.