esp8266ndn
NDN Arduino library for ESP8266 and more
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Classes | Public Member Functions | List of all members
ndnph::port_transport_socket::UdpUnicastTransport Class Reference

A transport that communicates over IPv4 unicast UDP tunnel. More...

#include <udp-unicast.hpp>

Inherits ndnph::transport::Transport, and ndnph::transport::DynamicRxQueueMixin.

Public Member Functions

 UdpUnicastTransport (size_t bufLen=DEFAULT_BUFLEN)
 
 ~UdpUnicastTransport () override
 
bool beginListen (const sockaddr_in *laddr)
 Start listening on given local IPv4 address. More...
 
bool beginListen (const sockaddr_in6 *laddr, int v6only=-1)
 Start listening on given local IPv6 address. More...
 
bool beginListen (uint16_t localPort=6363)
 Start listening on given local port for both IPv4 and IPv6. More...
 
bool beginTunnel (const sockaddr_in *raddr)
 Connect to given remote IPv4 address. More...
 
bool beginTunnel (const sockaddr_in6 *raddr, int v6only=-1)
 Connect to given remote IPv6 address. More...
 
bool beginTunnel (std::initializer_list< uint8_t > remoteHost, uint16_t remotePort=6363)
 Connect to given remote IP and port. More...
 
bool end ()
 Stop listening or close connection. More...
 
- Public Member Functions inherited from ndnph::transport::Transport
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...
 

Additional Inherited Members

- Public Types inherited from ndnph::transport::Transport
using RxCallback = void(*)(void *ctx, const uint8_t *pkt, size_t pktLen, uint64_t endpointId)
 
- Static Public Attributes inherited from ndnph::transport::DynamicRxQueueMixin
static constexpr size_t DEFAULT_BUFLEN = 1500
 
- Protected Member Functions inherited from ndnph::transport::Transport
void invokeRxCallback (const uint8_t *pkt, size_t pktLen, uint64_t endpointId=0)
 Invoke incoming packet callback for a received packet. More...
 
- Protected Member Functions inherited from ndnph::transport::DynamicRxQueueMixin
 DynamicRxQueueMixin (size_t bufLen=DEFAULT_BUFLEN)
 Constructor. More...
 
- Protected Member Functions inherited from ndnph::transport::RxQueueMixin
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...
 

Detailed Description

A transport that communicates over IPv4 unicast UDP tunnel.

Constructor & Destructor Documentation

◆ UdpUnicastTransport()

ndnph::port_transport_socket::UdpUnicastTransport::UdpUnicastTransport ( size_t  bufLen = DEFAULT_BUFLEN)
inlineexplicit

◆ ~UdpUnicastTransport()

ndnph::port_transport_socket::UdpUnicastTransport::~UdpUnicastTransport ( )
inlineoverride

Member Function Documentation

◆ beginListen() [1/3]

bool ndnph::port_transport_socket::UdpUnicastTransport::beginListen ( const sockaddr_in *  laddr)
inline

Start listening on given local IPv4 address.

Parameters
laddrlocal IPv4 address and UDP port.
Returns
whether success.

◆ beginListen() [2/3]

bool ndnph::port_transport_socket::UdpUnicastTransport::beginListen ( const sockaddr_in6 *  laddr,
int  v6only = -1 
)
inline

Start listening on given local IPv6 address.

Parameters
laddrlocal IPv6 address and UDP port.
v6onlyIPV6_V6ONLY socket option: 0=no, 1=yes, -1=unchanged.
Returns
whether success.

◆ beginListen() [3/3]

bool ndnph::port_transport_socket::UdpUnicastTransport::beginListen ( uint16_t  localPort = 6363)
inline

Start listening on given local port for both IPv4 and IPv6.

Returns
whether success.

◆ beginTunnel() [1/3]

bool ndnph::port_transport_socket::UdpUnicastTransport::beginTunnel ( const sockaddr_in *  raddr)
inline

Connect to given remote IPv4 address.

Parameters
raddrremote IPv4 address and UDP port.
Returns
whether success.

◆ beginTunnel() [2/3]

bool ndnph::port_transport_socket::UdpUnicastTransport::beginTunnel ( const sockaddr_in6 *  raddr,
int  v6only = -1 
)
inline

Connect to given remote IPv6 address.

Parameters
raddrremote IPv6 address and UDP port.
v6onlyIPV6_V6ONLY socket option: 0=no, 1=yes, -1=unchanged.
Returns
whether success.

◆ beginTunnel() [3/3]

bool ndnph::port_transport_socket::UdpUnicastTransport::beginTunnel ( std::initializer_list< uint8_t >  remoteHost,
uint16_t  remotePort = 6363 
)
inline

Connect to given remote IP and port.

Parameters
remoteHostfour octets to represent IPv4 address.
remotePortport number.

◆ end()

bool ndnph::port_transport_socket::UdpUnicastTransport::end ( )
inline

Stop listening or close connection.


The documentation for this class was generated from the following file: