Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/udp_server_socket.h @ 9461

Last change on this file since 9461 was 9461, checked in by patrick, 18 years ago

working on a dual connection server socket

File size: 2.0 KB
Line 
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
25struct NetworkPacket
26{
27  int length;
28  byte * data;
29};
30
31typedef std::list<NetworkPacket> NetworkPacketList;
32
33typedef std::vector<NetworkPacketList> PacketBuffer;
34
35
36//!< informations struct for each user
37struct UserInfo
38{
39  IPaddress     addr;            //!< ip address of this user
40  byte          randomByte;      //!< random byte of this user
41};
42
43
44typedef std::vector<UserInfo> UserList;
45
46typedef std::list<UdpSocket*> UdpSocketList;
47
48
49//!< the upd server socket listening for incoming connections
50class UdpServerSocket : public ServerSocket
51{
52  public:
53    UdpServerSocket( int port);
54    virtual ~UdpServerSocket();
55
56    /* server socket manipulations */
57    virtual bool listen( unsigned int port );
58    virtual NetworkSocket* getNewClientSocket( void );
59    virtual NetworkSocket* getNewProxySocket( void );
60    virtual void close();
61
62
63    virtual void update();
64
65    /* network traffic interface */
66    NetworkPacket getPacket( int userId );
67    void removeUser( int userId );
68    bool sendPacket( NetworkPacket networkPacket, int userId );
69
70
71  private:
72    void removeUserPackets( int userId );
73    int getPacketCount( int childId );
74    void initUser( int childId, IPaddress ip, byte randomByte );
75
76
77  private:
78    UDPsocket          socket;           //!< will be uses to send/recieve data
79    UDPpacket *        packet;           //!< packet structure to recieve packet
80    PacketBuffer       packetBuffer;     //!< will store recieved packets for UdpSockets
81    UserList           userList;         //!< contains information about clients
82    UdpSocketList      newSocketList;    //!< contains new socket
83
84};
85
86#endif
Note: See TracBrowser for help on using the repository browser.