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
|
// -*- C++ -*-
//
// $Id: Handle_Broadcast.h 80826 2008-03-04 14:51:23Z wotte $
/* Handles INET broadcast datagram messages from remote hosts on the local subnet. */
#ifndef _HANDLE_BROADCAST_H
#define _HANDLE_BROADCAST_H
#include "ace/Service_Config.h"
#include "ace/Reactor.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Service_Types.h"
#include "ace/INET_Addr.h"
#include "ace/SOCK_Dgram.h"
#include "ace/Log_Msg.h"
#include "ace/svc_export.h"
class ACE_Svc_Export Handle_Broadcast : public ACE_Service_Object, public ACE_SOCK_Dgram
{
public:
Handle_Broadcast (void);
~Handle_Broadcast (void);
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **, size_t) const;
virtual int fini (void);
private:
int open (const ACE_INET_Addr &r, int async = 0);
virtual ACE_HANDLE get_handle (void) const;
virtual int handle_input (ACE_HANDLE fd);
virtual int handle_close (ACE_HANDLE fd, ACE_Reactor_Mask);
static unsigned short DEFAULT_PORT;
};
extern ACE_Service_Object_Type rb;
#if defined (__ACE_INLINE__)
#define ACE_INLINE inline
#include "Handle_Broadcast.inl"
#else
#define ACE_INLINE
#endif /* __ACE_INLINE__ */
#endif /* _HANDLE_BROADCAST_H */
|