summaryrefslogtreecommitdiff
path: root/ACE/tests/Cached_Conn_Test.h
blob: 4ca36cd919c42eb575e7a6a609d15a03e723afdd (plain)
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

//=============================================================================
/**
 *  @file    Cached_Conn_Test.h
 *
 *  Define class needed for generating templates.
 *
 *  @author Kirthika Parameswaran  <kirthika@cs.wustl.edu>
 */
//=============================================================================


#ifndef ACE_TESTS_CACHED_CONN_TEST_H
#define ACE_TESTS_CACHED_CONN_TEST_H

#include "ace/SOCK_Stream.h"
#include "ace/Svc_Handler.h"

class Svc_Handler : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>
{
public:
  Svc_Handler (ACE_Thread_Manager *t = 0);
  int open (void *v = 0);
  int close (u_long flags = 0);
};

#endif /* ACE_TESTS_CACHED_ACCEPT_CONN_TEST_H */