summaryrefslogtreecommitdiff
path: root/ACE/ace/QoS/QoS_Session_Impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/QoS/QoS_Session_Impl.cpp')
-rw-r--r--ACE/ace/QoS/QoS_Session_Impl.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/ACE/ace/QoS/QoS_Session_Impl.cpp b/ACE/ace/QoS/QoS_Session_Impl.cpp
index dd247f68339..f552755488e 100644
--- a/ACE/ace/QoS/QoS_Session_Impl.cpp
+++ b/ACE/ace/QoS/QoS_Session_Impl.cpp
@@ -222,7 +222,7 @@ rsvp_callback (rapi_sid_t /* sid */,
}
// Constructor.
-ACE_RAPI_Session::ACE_RAPI_Session (void)
+ACE_RAPI_Session::ACE_RAPI_Session ()
{
ACE_TRACE ("ACE_RAPI_Session::ACE_RAPI_Session");
//this->source_port (DEFAULT_SOURCE_SENDER_PORT);
@@ -269,7 +269,7 @@ ACE_RAPI_Session::open (ACE_INET_Addr dest_addr,
// Close the RAPI QoS Session.
int
-ACE_RAPI_Session::close (void)
+ACE_RAPI_Session::close ()
{
this->rsvp_error = rapi_release(this->session_id_);
@@ -287,7 +287,7 @@ ACE_RAPI_Session::close (void)
//Get the most recent RSVP event that occurred
ACE_QoS_Session::RSVP_Event_Type
-ACE_RAPI_Session::rsvp_event_type (void)
+ACE_RAPI_Session::rsvp_event_type ()
{
return this->rsvp_event_type_;
}
@@ -523,7 +523,7 @@ ACE_RAPI_Session::receiving_qos (const ACE_QoS &ace_qos)
}
int
-ACE_RAPI_Session::update_qos (void)
+ACE_RAPI_Session::update_qos ()
{
// Update the session QoS Parameters based on the RSVP Event Received.
if ((rsvp_error = rapi_dispatch ()) != 0)
@@ -624,7 +624,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
int ACE_GQoS_Session::GQoS_session_id = 0;
// Constructor.
-ACE_GQoS_Session::ACE_GQoS_Session (void)
+ACE_GQoS_Session::ACE_GQoS_Session ()
{
ACE_TRACE ("ACE_GQoS_Session::ACE_GQoS_Session");
}
@@ -644,7 +644,7 @@ ACE_GQoS_Session::open (ACE_INET_Addr dest_addr,
// Close the GQoS Session.
int
-ACE_GQoS_Session::close (void)
+ACE_GQoS_Session::close ()
{
// TBD.
return 0;
@@ -687,7 +687,7 @@ ACE_GQoS_Session::qos (ACE_SOCK *socket,
}
int
-ACE_GQoS_Session::update_qos (void)
+ACE_GQoS_Session::update_qos ()
{
// WSAIoctl (GET_QOS) call goes here...
return 0;
@@ -695,7 +695,7 @@ ACE_GQoS_Session::update_qos (void)
//Get the most recent RSVP event that occurred
ACE_QoS_Session::RSVP_Event_Type
-ACE_GQoS_Session::rsvp_event_type (void)
+ACE_GQoS_Session::rsvp_event_type ()
{
return this->rsvp_event_type_;
}