diff options
author | bala <balanatarajan@users.noreply.github.com> | 2001-01-11 20:03:17 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2001-01-11 20:03:17 +0000 |
commit | 30462c114fccf99c378008a83e3f8397dccb7d2b (patch) | |
tree | cfea778774c09e60739a3d85ebd986c4a1434b97 /TAO/tao/Pluggable.i | |
parent | 65fcb49ea548ce1b154780932d7ec8c19255b1fb (diff) | |
download | ATCD-30462c114fccf99c378008a83e3f8397dccb7d2b.tar.gz |
ChangeLogTag: Thu Jan 11 14:02:25 2001 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Pluggable.i')
-rw-r--r-- | TAO/tao/Pluggable.i | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/TAO/tao/Pluggable.i b/TAO/tao/Pluggable.i index c5b7092b276..ba23e5ece2f 100644 --- a/TAO/tao/Pluggable.i +++ b/TAO/tao/Pluggable.i @@ -3,9 +3,19 @@ // **************************************************************** +ACE_INLINE ssize_t +TAO_Transport::read (char *buf, + size_t len, + const ACE_Time_Value * /*max_wait_time*/) +{ + return ACE::recv (this->handle (), + (void *) buf, + len); +} // @@ One of the orb_core () methods should be done away. Will visit // @@ this later -- Bala + ACE_INLINE TAO_ORB_Core * TAO_Transport::orb_core (void) const { |