summaryrefslogtreecommitdiff
path: root/TAO/tao/Server_Request.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Server_Request.i')
-rw-r--r--TAO/tao/Server_Request.i14
1 files changed, 11 insertions, 3 deletions
diff --git a/TAO/tao/Server_Request.i b/TAO/tao/Server_Request.i
index 119e5d6cee7..345a30bf693 100644
--- a/TAO/tao/Server_Request.i
+++ b/TAO/tao/Server_Request.i
@@ -45,10 +45,18 @@ IIOP_ServerRequest::outgoing (void)
}
// Invocation attributes.
+
ACE_INLINE const char *
IIOP_ServerRequest::operation (void) const
{
- return this->operation_;
+ return this->operation_.c_str ();
+}
+
+// get the length of the operation name.
+ACE_INLINE unsigned int
+IIOP_ServerRequest::operation_length (void) const
+{
+ return this->operation_.length ();
}
#if 0
@@ -66,7 +74,7 @@ IIOP_ServerRequest::response_expected (void) const
return this->response_expected_;
}
-ACE_INLINE CORBA::Principal_ptr
+ACE_INLINE CORBA::Principal_ptr
IIOP_ServerRequest::principal (void) const
{
return this->requesting_principal_;
@@ -84,7 +92,7 @@ IIOP_ServerRequest::service_info (void) const
return this->service_info_;
}
-ACE_INLINE CORBA::ULong
+ACE_INLINE CORBA::ULong
IIOP_ServerRequest::request_id (void)
{
return this->request_id_;