summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-01 02:36:06 +0000
committeryamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-01 02:36:06 +0000
commit6f9bd1c6035e1aec66c920086fc80ea66d9367ae (patch)
treea7fff1c2189a0fe90fdd963930bf09756f801309
parentb5ef544130ab962dc06061070413cbb6b2609ef3 (diff)
downloadATCD-6f9bd1c6035e1aec66c920086fc80ea66d9367ae.tar.gz
*** empty log message ***
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Latency/ping.cpp2
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Latency/ping.h3
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Latency/pong.h2
3 files changed, 5 insertions, 2 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/Latency/ping.cpp b/TAO/orbsvcs/tests/AVStreams/Latency/ping.cpp
index 86d8787a25e..5ca2dde38c1 100644
--- a/TAO/orbsvcs/tests/AVStreams/Latency/ping.cpp
+++ b/TAO/orbsvcs/tests/AVStreams/Latency/ping.cpp
@@ -174,8 +174,6 @@ int main (int argc, char *argv[])
ACE_TRY_CHECK;
}
- ACE_Time_Value tv (60, 0);
- // orb->run (tv, ACE_TRY_ENV);
orb->run ();
ACE_TRY_CHECK;
diff --git a/TAO/orbsvcs/tests/AVStreams/Latency/ping.h b/TAO/orbsvcs/tests/AVStreams/Latency/ping.h
index c9063f976e3..698d95b1180 100644
--- a/TAO/orbsvcs/tests/AVStreams/Latency/ping.h
+++ b/TAO/orbsvcs/tests/AVStreams/Latency/ping.h
@@ -23,11 +23,14 @@
class Ping_Recv_Callback : public TAO_AV_Callback
{
public:
+ Ping_Recv_Callback (void);
virtual int handle_stop (void);
virtual int receive_frame (ACE_Message_Block *frame,
TAO_AV_frame_info *frame_info = 0,
const ACE_Addr &peer_address = ACE_Addr::sap_any);
virtual int handle_destroy (void);
+ protected:
+ int count_;
};
class Ping_Recv : public TAO_FlowConsumer
diff --git a/TAO/orbsvcs/tests/AVStreams/Latency/pong.h b/TAO/orbsvcs/tests/AVStreams/Latency/pong.h
index af52b9a70f7..92d90adaad4 100644
--- a/TAO/orbsvcs/tests/AVStreams/Latency/pong.h
+++ b/TAO/orbsvcs/tests/AVStreams/Latency/pong.h
@@ -59,6 +59,8 @@ private:
ACE_Message_Block frame_;
// Pre-allocate the message block to send...
+ int count_;
+
};
class Ping_Send : public TAO_FlowProducer