summaryrefslogtreecommitdiff
path: root/tests/Conn_Test.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Conn_Test.h')
-rw-r--r--tests/Conn_Test.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/Conn_Test.h b/tests/Conn_Test.h
deleted file mode 100644
index 8c7290cd399..00000000000
--- a/tests/Conn_Test.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#include "ace/Service_Config.h"
-#include "ace/Svc_Handler.h"
-#include "ace/SOCK_Stream.h"
-
-class Svc_Handler : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>
- // = TITLE
- // This class is the product created by both <ACE_Connector>
- // and <ACE_Acceptor> objects.
- //
- // = DESCRIPTION
- // This class gets its own header file to work around AIX C++
- // compiler "features" related to template instantiation... It is
- // only used by Conn_Test.cpp.
-{
-public:
- Svc_Handler (ACE_Thread_Manager * = 0);
- // Do-nothing constructor.
-
- virtual int open (void *);
- // Initialization hook.
-
- virtual int recycle (void * = 0);
- // Prepare for recycling.
-
- void send_data (void);
- // Send data to server.
-
- void recv_data (void);
- // Recv data from client.
-
- int close (u_long = 0);
- // Shutdown the <Svc_Handler>.
-};