diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2008-03-04 13:56:48 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2008-03-04 13:56:48 +0000 |
commit | c4078c377d74290ebe4e66da0b4975da91732376 (patch) | |
tree | 1816ef391e42a07929304908ac0e21f4c2f6cb7b /ACE/tests/NonBlocking_Conn_Test.h | |
parent | 700d1c1a6be348c6c70a2085e559baeb8f4a62ea (diff) | |
download | ATCD-c4078c377d74290ebe4e66da0b4975da91732376.tar.gz |
swap in externals for ACE and TAO
Diffstat (limited to 'ACE/tests/NonBlocking_Conn_Test.h')
-rw-r--r-- | ACE/tests/NonBlocking_Conn_Test.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/ACE/tests/NonBlocking_Conn_Test.h b/ACE/tests/NonBlocking_Conn_Test.h deleted file mode 100644 index 77746238226..00000000000 --- a/ACE/tests/NonBlocking_Conn_Test.h +++ /dev/null @@ -1,54 +0,0 @@ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// tests -// -// = FILENAME -// NonBlocking_Conn_Test.cpp -// -// = DESCRIPTION -// This test checks for the proper working of the following: -// - blocking connections -// - blocking connections with timeouts -// - non-blocking connections -// - non-blocking connections without waiting for completions -// - non-blocking connections with timeouts -// -// = AUTHOR -// Irfan Pyarali <irfan@oomworks.com> -// -// ============================================================================ - -#ifndef NONBLOCKING_CONN_TEST_H -#define NONBLOCKING_CONN_TEST_H - -#include "ace/Svc_Handler.h" -#include "ace/SOCK_Stream.h" - -class Svc_Handler : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH> -{ -public: - - enum Connection_Status - { - SUCCEEDED, - FAILED - }; - - Svc_Handler (void); - - void connection_status (Connection_Status &status, - int &completion_counter); - - int open (void *); - - int handle_close (ACE_HANDLE handle, - ACE_Reactor_Mask mask); - - Connection_Status *status_; - int *completion_counter_; -}; - -#endif /* NONBLOCKING_CONN_TEST_H */ |