2003-03-15 04:35:45 +08:00
|
|
|
#ifndef __RECEIVER_H
|
|
|
|
#define __RECEIVER_H
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Receiver.h
|
|
|
|
//
|
|
|
|
// Class definition for the recipient of a broadcasted message
|
|
|
|
//
|
|
|
|
|
2004-08-04 16:27:43 +08:00
|
|
|
#if !defined(WIN32) || defined(__CYGWIN__)
|
2003-03-15 04:35:45 +08:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class Receiver
|
|
|
|
{
|
|
|
|
public :
|
|
|
|
|
|
|
|
Receiver();
|
|
|
|
~Receiver();
|
|
|
|
|
|
|
|
// setBuffer defines the buffer into which the broadcasted
|
|
|
|
// message will be received.
|
|
|
|
void setBuffer( void *buffer, const unsigned int size );
|
|
|
|
|
|
|
|
// Define what port to listen and bind to
|
|
|
|
void setPort( const short port );
|
|
|
|
|
|
|
|
// Sync does a blocking wait to recieve next message
|
|
|
|
void sync( void );
|
|
|
|
|
|
|
|
private :
|
|
|
|
bool init( void );
|
|
|
|
|
|
|
|
private :
|
2004-08-04 16:27:43 +08:00
|
|
|
#if defined (WIN32) && !defined(__CYGWIN__)
|
2003-03-15 04:35:45 +08:00
|
|
|
SOCKET _so;
|
|
|
|
SOCKADDR_IN saddr;
|
|
|
|
#else
|
2004-08-04 16:27:43 +08:00
|
|
|
int _so;
|
2003-03-15 04:35:45 +08:00
|
|
|
struct sockaddr_in saddr;
|
|
|
|
#endif
|
|
|
|
bool _initialized;
|
|
|
|
short _port;
|
|
|
|
void *_buffer;
|
|
|
|
unsigned int _buffer_size;
|
|
|
|
};
|
|
|
|
#endif
|