2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
7 ServerRequestDetails::ServerRequestDetails (void)
8 : processing_mode_(PortableInterceptor::LOCAL_AND_REMOTE)
14 ServerRequestDetails::should_be_processed (bool is_remote_request) const
16 return ((this->processing_mode_ == PortableInterceptor::LOCAL_AND_REMOTE) ||
17 ((this->processing_mode_ == PortableInterceptor::REMOTE_ONLY) &&
18 (is_remote_request)) ||
19 ((this->processing_mode_ == PortableInterceptor::LOCAL_ONLY) &&
20 (!is_remote_request)));
24 TAO_END_VERSIONED_NAMESPACE_DECL