diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2008-07-22 11:34:18 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2008-07-22 11:34:18 +0000 |
commit | 402b3a1ec291d92dd436c0248c9bb0f3ce62c82b (patch) | |
tree | 3cacdd80884731dd236f6a4711f0337ea9b0d50e /TAO/tao/BiDir_GIOP | |
parent | ac6c3a80af06ab93c8a20023a2543da0c71100d0 (diff) | |
download | ATCD-402b3a1ec291d92dd436c0248c9bb0f3ce62c82b.tar.gz |
Tue Jul 22 11:31:28 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/BiDir_GIOP')
-rw-r--r-- | TAO/tao/BiDir_GIOP/BiDir_Service_Context_Handler.cpp | 4 | ||||
-rw-r--r-- | TAO/tao/BiDir_GIOP/BiDir_Service_Context_Handler.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/BiDir_GIOP/BiDir_Service_Context_Handler.cpp b/TAO/tao/BiDir_GIOP/BiDir_Service_Context_Handler.cpp index 7f78d6da748..e92ef8ee7e3 100644 --- a/TAO/tao/BiDir_GIOP/BiDir_Service_Context_Handler.cpp +++ b/TAO/tao/BiDir_GIOP/BiDir_Service_Context_Handler.cpp @@ -13,13 +13,13 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL int TAO_BiDIR_Service_Context_Handler::process_service_context ( - TAO_ServerRequest& server_request, + TAO_Transport& transport, const IOP::ServiceContext& context) { TAO_InputCDR cdr (reinterpret_cast<const char*> ( context.context_data.get_buffer ()), context.context_data.length ()); - return server_request.transport()->tear_listen_point_list (cdr); + return transport.tear_listen_point_list (cdr); } TAO_END_VERSIONED_NAMESPACE_DECL diff --git a/TAO/tao/BiDir_GIOP/BiDir_Service_Context_Handler.h b/TAO/tao/BiDir_GIOP/BiDir_Service_Context_Handler.h index 04689ed4eb4..fe81d85889e 100644 --- a/TAO/tao/BiDir_GIOP/BiDir_Service_Context_Handler.h +++ b/TAO/tao/BiDir_GIOP/BiDir_Service_Context_Handler.h @@ -26,7 +26,7 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL class TAO_BiDIR_Service_Context_Handler : public TAO_Service_Context_Handler { - virtual int process_service_context (TAO_ServerRequest& server_request, + virtual int process_service_context (TAO_Transport& transport, const IOP::ServiceContext& context); }; |