blob: 5b168b854fea9783a0fc602718ac6808d117ba48 (
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
|
// QoS_Manager.cpp
// $Id$
#define ACE_BUILD_DLL
#include "ace/QoS_Manager.h"
ACE_RCSID(ace, QoS_Manager, "$Id $")
ACE_ALLOC_HOOK_DEFINE(ACE_QOS_MANAGER)
ACE_QoS_Manager::ACE_QoS_Manager (void)
{}
ACE_QoS_Manager::~ACE_QoS_Manager (void)
{}
// Adds the given session to the list of session objects joined by
// this socket.
int
ACE_QoS_Manager::join_qos_session (ACE_QoS_Session *qos_session)
{
if (this->qos_session_set ().insert (qos_session) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
"Error in adding a new session to the "
"socket session set\n"),
-1);
return 0;
}
// Returns the QoS session set for this socket.
ACE_Unbounded_Set <ACE_QoS_Session *>
ACE_QoS_Manager::qos_session_set (void)
{
return this->qos_session_set_;
}
|