summaryrefslogtreecommitdiff
path: root/docs/tutorials/009/broadcast_client.cpp
blob: 76ff454d0669919ea45182fa0562893373fb1db4 (plain)
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

// $Id$

#include "ace/SOCK_Dgram_Bcast.h"
#include "ace/INET_Addr.h"

static const u_short PORT = ACE_DEFAULT_SERVER_PORT;

int main (int argc, char *argv[])
{
  ACE_INET_Addr local ((u_short) 0);
  ACE_INET_Addr remote (PORT, INADDR_BROADCAST);
  ACE_SOCK_Dgram_Bcast dgram;

  if (dgram.open (local) == -1)
  {
    ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "open"), -1);
  }

  char buf[512];

  sprintf (buf, argc > 1 ? argv[1] : "Hello World!");

  if (dgram.send (buf, strlen (buf) + 1, remote) == -1)
  {
    ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "send"), -1);
  }

  ACE_Time_Value timeout (2, 0);
  if (dgram.recv (buf, sizeof (buf), remote, 0, &timeout) == -1)
  {
    ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "recv"), -1);
  }

  ACE_DEBUG ((LM_DEBUG, "(%P|%t) The server at (%s) said (%s)\n",
	      remote.get_host_name (), buf));

  return (0);
}