summaryrefslogtreecommitdiff
path: root/examples/QOS/Sender_QOS_Event_Handler.cpp
blob: 43e0eb442d340d9b1103e3500ba72bc2b48227b1 (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
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
/* -*- C++ -*- */
// $Id$

// ============================================================================
//
// = LIBRARY
//    ACE_wrappers/examples/QOS
//
// = FILENAME
//    Sender_QOS_Event_Handler.cpp
//
// = AUTHOR
//    Vishal Kachroo <vishal@cs.wustl.edu>
//
// ============================================================================

#include "Sender_QOS_Event_Handler.h"

// Constructor.
ACE_QOS_Event_Handler::ACE_QOS_Event_Handler (void)
{
}

// Constructor.
ACE_QOS_Event_Handler::ACE_QOS_Event_Handler (const ACE_SOCK_Dgram_Mcast &dgram_mcast)
  : dgram_mcast_ (dgram_mcast)
{
}

// Destructor.
ACE_QOS_Event_Handler::~ACE_QOS_Event_Handler (void)
{
}

// Return the handle of the Dgram_Mcast. This method is called
// internally by the reactor.

ACE_HANDLE
ACE_QOS_Event_Handler::get_handle (void) const
{
  return this->dgram_mcast_.get_handle ();
}

// Handle the QoS Event. In this case send data to the receiver 
// using WSASendTo() that uses overlapped I/O.

int
ACE_QOS_Event_Handler::handle_qos (ACE_HANDLE)
{
  ACE_DEBUG ((LM_DEBUG,
              "\nReceived a QOS event. Inside handle_qos ()\n"));
 
  ACE_OVERLAPPED ace_overlapped;

  iovec iov;
  iov.iov_base = "Hello";
  iov.iov_len = 5;

  // For some really weird reason if I do not define the following
  // sockaddr_in, the <send> call fails.
  
  sockaddr_in s;
  ACE_UNUSED_ARG (s);

  ACE_INET_Addr send_to_addr (MY_DEFPORT,
                              DEFAULT_MULTICASTGROUP);
  size_t bytes_sent;

  if (this->dgram_mcast_.send (&iov,
                               1,
                               bytes_sent,
                               0,
                               send_to_addr,
                               &ace_overlapped,
                               NULL) != 0)
    ACE_ERROR_RETURN ((LM_ERROR,
                       "Error in dgram_mcast.send ()\n"),
                      -1);
  else
    ACE_DEBUG ((LM_DEBUG,
                "Using ACE_OS::sendto () : Bytes sent : %d",
                bytes_sent));
  return 0;
}