diff options
author | yamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-09-06 17:50:35 +0000 |
---|---|---|
committer | yamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-09-06 17:50:35 +0000 |
commit | 33d343064efcb1687ff2019afcef5f638bf0560d (patch) | |
tree | 06ae36017dfff43cf214bca2c7d40ea040d9c2b6 /ace/OS.h | |
parent | 9878f3a21524e536f3b98d4bfeb2faaf75563ccd (diff) | |
download | ATCD-33d343064efcb1687ff2019afcef5f638bf0560d.tar.gz |
ChangeLogTag: Thu Sep 06 12:36:43 2001 Yamuna Krishnamurthy <yamuna@cs.wustl.edu>
Diffstat (limited to 'ace/OS.h')
-rw-r--r-- | ace/OS.h | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -5130,13 +5130,16 @@ class ACE_OS_Export ACE_QoS #endif /* ACE_HAS_WINSOCK2 */ { public: + + ACE_QoS (void); + // = Get/set the flow spec for data sending. - ACE_Flow_Spec sending_flowspec (void) const; - void sending_flowspec (const ACE_Flow_Spec &fs); + ACE_Flow_Spec *sending_flowspec (void) const; + void sending_flowspec (ACE_Flow_Spec *fs); // = Get/set the flow spec for data receiving. - ACE_Flow_Spec receiving_flowspec (void) const; - void receiving_flowspec (const ACE_Flow_Spec &fs); + ACE_Flow_Spec *receiving_flowspec (void) const; + void receiving_flowspec (ACE_Flow_Spec *fs); // = Get/set the provider specific information. iovec provider_specific (void) const; @@ -5146,8 +5149,8 @@ public: #else private: - ACE_Flow_Spec sending_flowspec_; - ACE_Flow_Spec receiving_flowspec_; + ACE_Flow_Spec *sending_flowspec_; + ACE_Flow_Spec *receiving_flowspec_; #endif }; |