esp8266ndn
NDN Arduino library for ESP8266 and more
|
Mixin of RX queue in Transport. More...
#include <transport-rxqueue.hpp>
Inherits ndnph::transport::Transport.
Inherited by ndnph::transport::DynamicRxQueueMixin.
Classes | |
class | RxContext |
Protected Member Functions | |
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... | |
![]() | |
void | invokeRxCallback (const uint8_t *pkt, size_t pktLen, uint64_t endpointId=0) |
Invoke incoming packet callback for a received packet. More... | |
Additional Inherited Members | |
![]() | |
using | RxCallback = void(*)(void *ctx, const uint8_t *pkt, size_t pktLen, uint64_t endpointId) |
![]() | |
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... | |
Mixin of RX queue in Transport.
|
inlineprotected |
Allocate receive buffers during initialization.
F | `Region* (*)()` |
|
inlineprotected |
Process periodical events.
This delivers received packets to Face. This should be called in `loop()`.
|
inlineprotected |
Receive packets in a loop.