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 
33 public:
45 
51  static bool
52  isLocal();
53 
64  ndn_Error
65  connect(const char* host, unsigned short port, ElementListenerLite& elementListener);
66 
73  ndn_Error
74  send(const uint8_t* data, size_t dataLength);
75 
90  ndn_Error
91  processEvents(uint8_t *buffer, size_t bufferLength);
92 
97  ndn_Error
98  close();
99 
105  static UdpTransportLite&
106  downCast(ndn_UdpTransport& transport) { return *(UdpTransportLite*)&transport; }
107 
108  static const UdpTransportLite&
109  downCast(const ndn_UdpTransport& transport) { return *(UdpTransportLite*)&transport; }
110 };
111 
112 }
113 
114 #endif
Copyright (C) 2013-2016 Regents of the University of California.
Definition: common.hpp:35
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:106
Definition: transport-types.h:39
Definition: udp-transport-lite.hpp:32
static bool isLocal()
Determine whether this transport is to a node on the current machine.