blob: a91402a5e48ecaac7806275d5a3def1fb34e45e4 (
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
28
29
30
31
32
33
34
35
36
37
38
39
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// drwho
//
// = FILENAME
// CM_Server.h
//
// = AUTHOR
// Douglas C. Schmidt
//
// ============================================================================
#ifndef _CM_SERVER_H
#define _CM_SERVER_H
#include "Options.h"
#include "global.h"
#include "Comm_Manager.h"
class CM_Server : public Comm_Manager
{
// = TITLE
// Provides a virtual communcations layer for the server in drwho.
public:
CM_Server (void);
virtual ~CM_Server (void);
virtual int open (short port_number);
virtual int receive (int timeout = 0);
virtual int send (void);
virtual int mux (char *packet, int &packet_length) = 0;
virtual int demux (char *packet, int &packet_length) = 0;
};
#endif /* _CM_SERVER_H */
|