All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
udp-transport-lite.hpp
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
22 #ifndef NDN_UDP_TRANSPORT_LITE_HPP
23 #define NDN_UDP_TRANSPORT_LITE_HPP
24 
25 #include "../../c/errors.h"
26 #include "../../c/transport/transport-types.h"
27 #include "../util/dynamic-uint8-array-lite.hpp"
28 #include "../encoding/element-listener-lite.hpp"
29 
30 namespace ndn {
31 
37 public:
49 
55  static bool
56  isLocal();
57 
68  ndn_Error
69  connect(const char* host, unsigned short port, ElementListenerLite& elementListener);
70 
77  ndn_Error
78  send(const uint8_t* data, size_t dataLength);
79 
94  ndn_Error
95  processEvents(uint8_t *buffer, size_t bufferLength);
96 
101  ndn_Error
102  close();
103 
109  static UdpTransportLite&
110  downCast(ndn_UdpTransport& transport) { return *(UdpTransportLite*)&transport; }
111 
112  static const UdpTransportLite&
113  downCast(const ndn_UdpTransport& transport) { return *(UdpTransportLite*)&transport; }
114 };
115 
116 }
117 
118 #endif
An ElementListenerLite holds an OnReceivedElementLite function pointer.
Definition: element-listener-lite.hpp:37
ndn_Error close()
Close the socket.
A DynamicUInt8ArrayLite holds a pointer to an allocated array, the length of the allocated array...
Definition: dynamic-uint8-array-lite.hpp:35
ndn_Error connect(const char *host, unsigned short port, ElementListenerLite &elementListener)
Connect with UDP to the host:port.
ndn_Error send(const uint8_t *data, size_t dataLength)
Send data to the socket.
ndn_Error processEvents(uint8_t *buffer, size_t bufferLength)
Process any data to receive.
UdpTransportLite(DynamicUInt8ArrayLite &buffer)
Create a UdpTransport with default values for no connection yet and to use the given DynamicUInt8Arra...
static UdpTransportLite & downCast(ndn_UdpTransport &transport)
Downcast the reference to the ndn_UdpTransport struct to a UdpTransportLite.
Definition: udp-transport-lite.hpp:110
Definition: transport-types.h:39
A UdpTransportLite object is used to send packets and to listen for incoming packets over a UDP socke...
Definition: udp-transport-lite.hpp:36
static bool isLocal()
Determine whether this transport is to a node on the current machine.