-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnet.hpp
executable file
·79 lines (62 loc) · 2.03 KB
/
net.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
Author: R Brent Saunders
Date: Dec. 4, 2017
Project: Hypertac DFS NetDFP Driver
*/
// HEADERS
// -------
#ifndef UDP_SERVER_HPP
#define UDP_SERVER_HPP
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <data/dlinklist.hpp>
#include <ipc/genericio.h>
#include <datatypes.h>
#define MAX_DRIVER_MSG MAX_UDP_PACKET_SIZE
#define MAX_UDP_PACKET_SIZE 2048 // maximun bytes of any one message. adjustable by app
class UDPServer : public GenericIO {
protected:
int sock; // handle to the socket
int blocking; // are we using blocking I/O ?
struct sockaddr from; // clients return address
unsigned int fromlen; // len of client address
struct sockaddr qfrom; // return address from fifo
unsigned int qfromlen; // len of address from fifo
DoublyLinkedList clientList;
DoublyLinkedList messageList;
void init(short int);
public:
UDPServer();
~UDPServer();
void bindPort(const char *);// bind by service
void bindPort(int); // bind by port #
void setNonBlocking(); // set to a non blocking socket.
static int sameaddr(struct sockaddr *s1, int l1, struct sockaddr *s2, int l2);
int readMessage(BYTE *, int);
int sendMessage(BYTE *, int);
int sendMessage(const char *buf) { return sendMessage((BYTE *)buf, strlen(buf)); }
int checkMessages();
int send(char *msg, struct sockaddr *cl, int len);
void broadcast(char *sendbuf);
void registerClient(void); // add a client to the list of listeners
void delClient(void); // delete a client from list
const char *getMessage();
const char *popMessage();
};
class CLIENT : public Linkable {
public:
struct sockaddr *addr; // handle to client requesting radio traffic
int len; // size of sockaddr, kept here to reduce computations
long time; // time since started, it will timeout after X seconds
};
class MESSAGE : public Linkable {
public:
struct sockaddr msgFrom; // message return address
unsigned int msgFromLen;
int msgType;
char msgData[MAX_DRIVER_MSG];
};
#endif