From b124945f855def3dd3b31cfe88a71ca6a305a9b1 Mon Sep 17 00:00:00 2001 From: yamuna Date: Fri, 17 Oct 2003 23:06:53 +0000 Subject: *** empty log message *** --- TAO/orbsvcs/orbsvcs/AV/FlowSpec_Entry.i | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/TAO/orbsvcs/orbsvcs/AV/FlowSpec_Entry.i b/TAO/orbsvcs/orbsvcs/AV/FlowSpec_Entry.i index 3a940c75963..74f705772a2 100644 --- a/TAO/orbsvcs/orbsvcs/AV/FlowSpec_Entry.i +++ b/TAO/orbsvcs/orbsvcs/AV/FlowSpec_Entry.i @@ -177,6 +177,54 @@ TAO_FlowSpec_Entry::get_local_control_addr (void) return this->local_control_addr_; } +ACE_INLINE +int +TAO_FlowSpec_Entry::set_local_sec_addr (char** local_sec_addr, + int size) +{ + this->local_sec_addr_ = local_sec_addr; + this->num_local_sec_addrs_ = size; + return 0; +} + +ACE_INLINE +char** +TAO_FlowSpec_Entry::get_local_sec_addr (void) +{ + return this->local_sec_addr_; +} + +ACE_INLINE +int +TAO_FlowSpec_Entry::num_local_sec_addrs (void) +{ + return this->num_local_sec_addrs_; +} + +ACE_INLINE +int +TAO_FlowSpec_Entry::set_peer_sec_addr (char** peer_sec_addr, + int size) +{ + this->peer_sec_addr_ = peer_sec_addr; + this->num_peer_sec_addrs_ = size; + return 0; +} + +ACE_INLINE +char** +TAO_FlowSpec_Entry::get_peer_sec_addr (void) +{ + return this->peer_sec_addr_; +} + +ACE_INLINE +int +TAO_FlowSpec_Entry::num_peer_sec_addrs (void) +{ + return this->num_peer_sec_addrs_; +} + ACE_INLINE TAO_AV_Transport* TAO_FlowSpec_Entry::transport (void) -- cgit v1.2.1