summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/orbsvcs/AV/QoS_UDP.inl
blob: 9ae1b828b0f1f1947587dec5c14ebbc0c1506132 (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
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

//----------------------------------------------------------------------
// TAO_AV_UDP_Flow_Handler
//----------------------------------------------------------------------

ACE_INLINE
ACE_SOCK_Dgram_Mcast_QoS *
TAO_AV_UDP_QoS_Flow_Handler::get_socket (void)
{
  return &this->qos_sock_dgram_;
}

ACE_INLINE
int
TAO_AV_UDP_QoS_Flow_Handler::open (ACE_Addr &address)
{
  //    return this->qos_sock_dgram_.open (address);
  ACE_UNUSED_ARG( address );
  return 0;
}

ACE_INLINE ACE_QoS_Session*
TAO_AV_UDP_QoS_Flow_Handler::qos_session (void)
{       
  return this->qos_session_;
}

ACE_INLINE void
TAO_AV_UDP_QoS_Flow_Handler::qos_session (ACE_QoS_Session *qos_session)
{
  this->qos_session_ = qos_session;
}

ACE_INLINE void
TAO_AV_UDP_QoS_Flow_Handler::negotiator (AVStreams::Negotiator_ptr negotiator)
{
  this->negotiator_ = AVStreams::Negotiator::_duplicate (negotiator);
}

ACE_INLINE void
TAO_AV_UDP_QoS_Flow_Handler::endpoint (TAO_Base_StreamEndPoint *endpoint)
{
  this->endpoint_ = endpoint;
}

ACE_INLINE TAO_Base_StreamEndPoint *
TAO_AV_UDP_QoS_Flow_Handler::endpoint (void)
{
  return this->endpoint_;
}

ACE_INLINE void
TAO_AV_UDP_QoS_Flow_Handler::flowspec_entry (TAO_FlowSpec_Entry *entry)
{
  this->entry_ = entry;
}

ACE_INLINE TAO_FlowSpec_Entry *
TAO_AV_UDP_QoS_Flow_Handler::flowspec_entry (void)
{
  return this->entry_;
}

ACE_INLINE void
TAO_AV_UDP_QoS_Flow_Handler::av_core (TAO_AV_Core *avcore)
{
  this->av_core_ = avcore;
}

ACE_INLINE TAO_AV_Core *
TAO_AV_UDP_QoS_Flow_Handler::av_core (void)
{
  return this->av_core_;
}

TAO_END_VERSIONED_NAMESPACE_DECL