1 | /*! |
---|
2 | * @file udp_server_socket.h |
---|
3 | * waits for incoming connections |
---|
4 | |
---|
5 | */ |
---|
6 | |
---|
7 | #ifndef _UDP_SERVER_SOCKET |
---|
8 | #define _UDP_SERVER_SOCKET |
---|
9 | |
---|
10 | /* include this file, it contains some default definitions */ |
---|
11 | #include "netdefs.h" |
---|
12 | |
---|
13 | |
---|
14 | /* include base_object.h since all classes are derived from this one */ |
---|
15 | #include "base_object.h" |
---|
16 | #include "server_socket.h" |
---|
17 | #include "udp_socket.h" |
---|
18 | |
---|
19 | #include <list> |
---|
20 | #include <vector> |
---|
21 | |
---|
22 | #define UDP_PACKET_SIZE 10240 |
---|
23 | #define MAX_NEW_CONNECTIONS 8 |
---|
24 | |
---|
25 | struct NetworkPacket |
---|
26 | { |
---|
27 | int length; |
---|
28 | byte * data; |
---|
29 | }; |
---|
30 | |
---|
31 | typedef std::list<NetworkPacket> NetworkPacketList; |
---|
32 | |
---|
33 | typedef std::vector<NetworkPacketList> PacketBuffer; |
---|
34 | |
---|
35 | struct UserInfo |
---|
36 | { |
---|
37 | IPaddress addr; |
---|
38 | byte randomByte; |
---|
39 | }; |
---|
40 | |
---|
41 | typedef std::vector<UserInfo> UserList; |
---|
42 | |
---|
43 | typedef std::list<UdpSocket*> UdpSocketList; |
---|
44 | |
---|
45 | class UdpServerSocket : public ServerSocket |
---|
46 | { |
---|
47 | public: |
---|
48 | UdpServerSocket( int port); |
---|
49 | virtual ~UdpServerSocket(); |
---|
50 | |
---|
51 | virtual bool listen( unsigned int port ); |
---|
52 | |
---|
53 | virtual NetworkSocket* getNewSocket( void ); |
---|
54 | |
---|
55 | virtual void close(); |
---|
56 | |
---|
57 | virtual void update(); |
---|
58 | |
---|
59 | void removeUserPackets( int userId ); |
---|
60 | void removeUser( int userId ); |
---|
61 | NetworkPacket getPacket( int userId ); |
---|
62 | bool sendPacket( NetworkPacket networkPacket, int userId ); |
---|
63 | int getPacketCount( int childId ); |
---|
64 | void initUser( int childId, IPaddress ip, byte randomByte ); |
---|
65 | |
---|
66 | private: |
---|
67 | UDPsocket socket; //!< will be uses to send/recieve data |
---|
68 | UDPpacket * packet; //!< packet structure to recieve packet |
---|
69 | PacketBuffer packetBuffer; //!< will store recieved packets for UdpSockets |
---|
70 | UserList userList; //!< contains information about clients |
---|
71 | UdpSocketList newSocketList; //!< contains new socket |
---|
72 | |
---|
73 | }; |
---|
74 | |
---|
75 | #endif |
---|