1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file Conn_Test.h
*
* $Id: Conn_Test.h 93638 2011-03-24 13:16:05Z johnnyw $
*
* Define class needed for generating templates. IBM C++ requires this to
* be in its own file for auto template instantiation.
*
*
* @author Irfan Pyarali <irfan@cs.wustl.edu>
*/
//=============================================================================
#include "ace/Service_Config.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Null_Condition.h"
#include "ace/Svc_Handler.h"
#include "ace/SOCK_Stream.h"
/**
* @class Svc_Handler
*
* @brief This class is the product created by both <ACE_Connector>
* and <ACE_Acceptor> objects.
*
* 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.
*/
class Svc_Handler : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>
{
public:
/// Do-nothing constructor.
Svc_Handler (ACE_Thread_Manager * = 0);
/// Initialization hook.
virtual int open (void *);
/// Prepare for recycling.
virtual int recycle (void * = 0);
/// Send data to server.
void send_data (void);
/// Recv data from client.
void recv_data (void);
/// Shutdown the <Svc_Handler>.
int close (u_long = 0);
/// Set <this> to idle.
int idle (u_long flags);
};
|