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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
// = LIBRARY
// ace
//
// = FILENAME
// SOCK_Dgram_Bcast.h
//
// = AUTHOR
// Doug Schmidt
//
// ============================================================================
#if !defined (ACE_SOCK_DGRAM_BCAST_H)
#define ACE_SOCK_DGRAM_BCAST_H
#include "ace/INET_Addr.h"
#include "ace/SOCK_Dgram.h"
class ACE_Export ACE_Bcast_Node
{
public:
ACE_Bcast_Node (ACE_INET_Addr &, ACE_Bcast_Node *);
~ACE_Bcast_Node (void);
// Default dtor.
ACE_INET_Addr bcast_addr_;
// Broadcast address for the interface.
ACE_Bcast_Node *next_;
// Pointer to the next interface in the chain.
};
class ACE_Export ACE_SOCK_Dgram_Bcast : public ACE_SOCK_Dgram
{
// = TITLE
// Defines the member functions for the ACE_SOCK datagram
// abstraction.
public:
// = Initialization and termination methods.
ACE_SOCK_Dgram_Bcast (void);
// Default constructor.
ACE_SOCK_Dgram_Bcast (const ACE_Addr &local,
int protocol_family = PF_INET,
int protocol = 0,
int reuse_addr = 0,
const ASYS_TCHAR *host_name = 0);
~ACE_SOCK_Dgram_Bcast (void);
// Default dtor.
// Initiate a connectionless datagram broadcast endpoint.
int open (const ACE_Addr &local,
int protocol_family = PF_INET,
int protocol = 0,
int reuse_addr = 0,
const ASYS_TCHAR *host_name = 0);
// Initiate a connectionless datagram broadcast endpoint.
int close (void);
// Close up and release dynamically allocated resources.
ssize_t send (const void *buf,
size_t n,
u_short portnum,
int flags = 0) const;
// Broadcast the datagram to every interface. Returns the average
// number of bytes sent.
ssize_t send (const iovec iov[],
size_t n,
u_short portnum,
int flags = 0) const;
// Broadcast the <iovec> datagrams to every interface. Returns the
// average number of bytes sent.
ssize_t send (const void *buf,
size_t n,
const ACE_Addr &addr,
int flags = 0) const;
// Broadcast an N byte datagram to ADDR (note that addr must be
// preassigned to the broadcast address of the subnet...).
ssize_t send (const iovec iov[],
size_t n,
const ACE_Addr &addr,
int flags = 0) const;
// Broadcast an <iovec> of size <n> to <addr> as a datagram (note
// that addr must be preassigned to the broadcast address of the
// subnet...) */
void dump (void) const;
// Dump the state of an object.
ACE_ALLOC_HOOK_DECLARE;
// Declare the dynamic allocation hooks.
private:
int mk_broadcast (const ASYS_TCHAR *host_name);
// Make broadcast available for Datagram socket.
ACE_Bcast_Node *if_list_;
// Points to the head of the list of broadcast interfaces.
int get_remote_addr (ACE_Addr &) const;
// Do not allow this function to percolate up to this interface...
};
#if !defined (ACE_LACKS_INLINE_FUNCTIONS)
#include "ace/SOCK_Dgram_Bcast.i"
#endif
#endif /* ACE_SOCK_DGRAM_BCAST_H */
|