annotate include/UdpClient.h @ 269:ac8eb07afcf5

Oxygen text added to each render.cpp file for the default projects. Text includes project explanation from Wiki, edited in places. Empty project added as a default project. Doxyfile updated. Each of the project locations added to INPUT configuration option. Consider just watching the whole project file so all new projects are automatically pulled through.
author Robert Jack <robert.h.jack@gmail.com>
date Tue, 17 May 2016 15:40:16 +0100
parents c42a6b4dc2d4
children 6599a9978ac4
rev   line source
andrewm@70 1 /*
andrewm@70 2 * udpClient.h
andrewm@70 3 *
andrewm@70 4 * Created on: 19 May 2015
andrewm@70 5 * Author: giulio moro
andrewm@70 6 */
andrewm@70 7
andrewm@70 8 #ifndef UDPCLIENT_H_
andrewm@70 9 #define UDPCLIENT_H_
andrewm@70 10
andrewm@70 11 #include <sys/types.h>
andrewm@70 12 #include <sys/socket.h>
andrewm@70 13 #include <netinet/in.h>
andrewm@70 14 #include <arpa/inet.h>
andrewm@70 15 #include <netdb.h>
andrewm@70 16 #include <stdio.h>
andrewm@70 17 #include <stdlib.h>
andrewm@70 18 #include <unistd.h>
andrewm@70 19 #include <string.h>
andrewm@70 20
andrewm@70 21 class UdpClient{
andrewm@70 22 private:
andrewm@70 23 int port;
andrewm@70 24 int enabled;
andrewm@70 25 int outSocket;
giuliomoro@217 26 struct timeval stTimeOut;
giuliomoro@217 27 fd_set stWriteFDS;
andrewm@70 28 bool isSetPort;
andrewm@70 29 bool isSetServer;
andrewm@70 30 struct sockaddr_in destinationServer;
andrewm@70 31 public:
andrewm@70 32 UdpClient();
andrewm@70 33 UdpClient(int aPort, const char* aServerName);
andrewm@70 34 ~UdpClient();
andrewm@70 35 void setPort(int aPort);
andrewm@70 36 void setServer(const char* aServerName);
andrewm@70 37 int send(void* message, int size);
giuliomoro@217 38 int write(const char* remoteHostname, int remotePortNumber, void* sourceBuffer, int numBytesToWrite);
giuliomoro@217 39 int waitUntilReady(bool readyForReading, int timeoutMsecs);
andrewm@70 40 };
andrewm@70 41
andrewm@70 42
andrewm@70 43
andrewm@70 44 #endif /* UDPCLIENT_H_ */