ACE+TAO-7_0_8
[ACE_TAO.git] / TAO / tests / Bug_3547_Regression / UDPTest_i.cpp
blobe318f1ecfae6cc6f57ebbdbb55fd01777c96ba8b
1 #include "UDPTest_i.h"
2 #include <ace/Log_Msg.h>
4 unsigned char buf[1000] = {0} ;
6 UDPTest_i::UDPTest_i () : received_send_ (false)
10 UDPTest_i::~UDPTest_i ()
14 void UDPTest_i::send( const ::UDPTestI::BufferT Msg )
16 memcpy( buf, Msg, 1000 ) ;
17 memset( buf, 0, 1000 ) ;
18 received_send_ = true;