Jeff Thompson | 0aa754a | 2013-07-17 17:42:28 -0700 | [diff] [blame] | 1 | /* |
| 2 | * File: UdpTransport.h |
| 3 | * Author: jefft0 |
| 4 | * |
| 5 | * Created on July 14, 2013, 4:15 PM |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef NDN_UDPTRANSPORT_H |
Jeff Thompson | 2d27e2f | 2013-08-09 12:55:00 -0700 | [diff] [blame] | 9 | #define NDN_UDPTRANSPORT_H |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 10 | |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 11 | #include "socket-transport.h" |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 12 | |
Jeff Thompson | 2d27e2f | 2013-08-09 12:55:00 -0700 | [diff] [blame] | 13 | #ifdef __cplusplus |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 14 | extern "C" { |
| 15 | #endif |
| 16 | |
| 17 | struct ndn_UdpTransport { |
Jeff Thompson | 0aa754a | 2013-07-17 17:42:28 -0700 | [diff] [blame] | 18 | struct ndn_SocketTransport base; |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 19 | }; |
| 20 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame^] | 21 | /** |
| 22 | * Initialize the ndn_UdpTransport struct with default values for no connection yet. |
| 23 | * @param self A pointer to the ndn_UdpTransport struct. |
| 24 | */ |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 25 | static inline void ndn_UdpTransport_init(struct ndn_UdpTransport *self) |
| 26 | { |
Jeff Thompson | 0aa754a | 2013-07-17 17:42:28 -0700 | [diff] [blame] | 27 | ndn_SocketTransport_init(&self->base); |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 28 | } |
| 29 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame^] | 30 | /** |
| 31 | * Connect with UDP to the host:port. |
| 32 | * @param self A pointer to the ndn_UdpTransport struct. |
| 33 | * @param host The host to connect to. |
| 34 | * @param port The port to connect to. |
| 35 | * @return 0 for success, else an error code. |
| 36 | */ |
Jeff Thompson | 0aa754a | 2013-07-17 17:42:28 -0700 | [diff] [blame] | 37 | static inline ndn_Error ndn_UdpTransport_connect(struct ndn_UdpTransport *self, char *host, unsigned short port) |
| 38 | { |
| 39 | return ndn_SocketTransport_connect(&self->base, SOCKET_UDP, host, port); |
| 40 | } |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 41 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame^] | 42 | /** |
| 43 | * Send data to the socket. |
| 44 | * @param self A pointer to the ndn_UdpTransport struct. |
| 45 | * @param data A pointer to the buffer of data to send. |
| 46 | * @param dataLength The number of bytes in data. |
| 47 | * @return 0 for success, else an error code. |
| 48 | */ |
Jeff Thompson | 0aa754a | 2013-07-17 17:42:28 -0700 | [diff] [blame] | 49 | static inline ndn_Error ndn_UdpTransport_send(struct ndn_UdpTransport *self, unsigned char *data, unsigned int dataLength) |
| 50 | { |
| 51 | return ndn_SocketTransport_send(&self->base, data, dataLength); |
| 52 | } |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 53 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame^] | 54 | /** |
| 55 | * Check if there is data ready on the socket to be received with ndn_UdpTransport_receive. |
| 56 | * @param self A pointer to the ndn_UdpTransport struct. |
| 57 | * @param receiveIsReady This will be set to 1 if data is ready, 0 if not. |
| 58 | * @return 0 for success, else an error code. |
| 59 | */ |
| 60 | static inline ndn_Error ndn_UdpTransport_receiveIsReady(struct ndn_UdpTransport *self, int *receiveIsReady) |
| 61 | { |
| 62 | return ndn_SocketTransport_receiveIsReady(&self->base, receiveIsReady); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Receive data from the socket. NOTE: This is a blocking call. You should first call ndn_SocketTransport_receiveIsReady |
| 67 | * to make sure there is data ready to receive. |
| 68 | * @param self A pointer to the ndn_UdpTransport struct. |
| 69 | * @param buffer A pointer to the buffer to receive the data. |
| 70 | * @param bufferLength The maximum length of buffer. |
| 71 | * @param nBytes Return the number of bytes received into buffer. |
| 72 | * @return 0 for success, else an error code. |
| 73 | */ |
Jeff Thompson | 0aa754a | 2013-07-17 17:42:28 -0700 | [diff] [blame] | 74 | static inline ndn_Error ndn_UdpTransport_receive |
| 75 | (struct ndn_UdpTransport *self, unsigned char *buffer, unsigned int bufferLength, unsigned int *nBytes) |
| 76 | { |
| 77 | return ndn_SocketTransport_receive(&self->base, buffer, bufferLength, nBytes); |
| 78 | } |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 79 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame^] | 80 | /** |
| 81 | * Close the socket. |
| 82 | * @param self A pointer to the ndn_UdpTransport struct. |
| 83 | * @return 0 for success, else an error code. |
| 84 | */ |
Jeff Thompson | 5796388 | 2013-08-05 16:01:25 -0700 | [diff] [blame] | 85 | static inline ndn_Error ndn_UdpTransport_close(struct ndn_UdpTransport *self) |
| 86 | { |
| 87 | return ndn_SocketTransport_close(&self->base); |
| 88 | } |
| 89 | |
Jeff Thompson | 2d27e2f | 2013-08-09 12:55:00 -0700 | [diff] [blame] | 90 | #ifdef __cplusplus |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 91 | } |
| 92 | #endif |
| 93 | |
| 94 | #endif |