| Rev | Line |   | 
|---|
| [8458] | 1 | /*! | 
|---|
 | 2 |  * @file proto_class.h | 
|---|
 | 3 |  * @brief Definition of ... | 
|---|
 | 4 |  */ | 
|---|
 | 5 |  | 
|---|
 | 6 | #ifndef _UDP_BROADCAST_H | 
|---|
 | 7 | #define _UDP_BROADCAST_H | 
|---|
 | 8 |  | 
|---|
 | 9 | #include "netdefs.h" | 
|---|
 | 10 | #include <cassert> | 
|---|
 | 11 |  | 
|---|
 | 12 | #define BROADCAST_PACKET_SIZE 1024 | 
|---|
 | 13 |  | 
|---|
 | 14 | //! A class for sending/recieving brotcast packets for lan | 
|---|
 | 15 | class UdpBroadcast | 
|---|
 | 16 | { | 
|---|
 | 17 |  | 
|---|
 | 18 |   public: | 
|---|
 | 19 |     UdpBroadcast(); | 
|---|
 | 20 |     virtual ~UdpBroadcast(); | 
|---|
 | 21 |      | 
|---|
 | 22 |     bool listen( int port ); | 
|---|
 | 23 |     bool open( int port ); | 
|---|
 | 24 |     int send( byte * data, int length, IPaddress * ip = NULL ); | 
|---|
 | 25 |     int recv( byte * data, int maxLength, IPaddress * ip = NULL ); | 
|---|
 | 26 |  | 
|---|
 | 27 |   private: | 
|---|
 | 28 |     int port; | 
|---|
 | 29 |     UDPpacket * packet; | 
|---|
| [8461] | 30 |     UDPsocket socket; | 
|---|
| [8458] | 31 |  | 
|---|
 | 32 | }; | 
|---|
 | 33 |  | 
|---|
 | 34 | #endif /* _UDP_BROADCAST_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.