diff options
Diffstat (limited to 'ACE/ace/SOCK_CODgram.h')
-rw-r--r-- | ACE/ace/SOCK_CODgram.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/ACE/ace/SOCK_CODgram.h b/ACE/ace/SOCK_CODgram.h new file mode 100644 index 00000000000..007f7352c97 --- /dev/null +++ b/ACE/ace/SOCK_CODgram.h @@ -0,0 +1,78 @@ +// -*- C++ -*- + +//============================================================================= +/** + * @file SOCK_CODgram.h + * + * $Id$ + * + * @author Doug Schmidt + */ +//============================================================================= + + +#ifndef ACE_SOCK_CODGRAM_H +#define ACE_SOCK_CODGRAM_H +#include /**/ "ace/pre.h" + +#include "ace/ACE_export.h" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +# pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + +#include "ace/SOCK_IO.h" +#include "ace/Addr.h" +#include "ace/INET_Addr.h" + +ACE_BEGIN_VERSIONED_NAMESPACE_DECL + +/** + * @class ACE_SOCK_CODgram + * + * @brief Defines the member functions for the ACE_SOCK connected + * datagram abstraction. + */ +class ACE_Export ACE_SOCK_CODgram : public ACE_SOCK_IO +{ +public: + // = Initialization methods. + /// Default constructor. + ACE_SOCK_CODgram (void); + + ACE_SOCK_CODgram (const ACE_Addr &remote_sap, + const ACE_Addr &local_sap = ACE_Addr::sap_any, + int protocol_family = ACE_PROTOCOL_FAMILY_INET, + int protocol = 0, + int reuse_addr = 0); + + /// Default dtor. + ~ACE_SOCK_CODgram (void); + + // Initiate a connected dgram. + + /// Initiate a connected dgram. + int open (const ACE_Addr &remote_sap, + const ACE_Addr &local_sap = ACE_Addr::sap_any, + int protocol_family = ACE_PROTOCOL_FAMILY_INET, + int protocol = 0, + int reuse_addr = 0); + + // = Meta-type info. + typedef ACE_INET_Addr PEER_ADDR; + + /// Dump the state of an object. + void dump (void) const; + + /// Declare the dynamic allocation hooks. + ACE_ALLOC_HOOK_DECLARE; +}; + +ACE_END_VERSIONED_NAMESPACE_DECL + +#if defined (__ACE_INLINE__) +#include "ace/SOCK_CODgram.inl" +#endif /* __ACE_INLINE__ */ + +#include /**/ "ace/post.h" +#endif /* ACE_SOCK_CODGRAM_H */ |