blob: 2a355c8e262f55a107ffdce59294607ed6bd4ce6 (
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
40
41
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// drwho
//
// = FILENAME
// PM_Server.h
//
// = AUTHOR
// Douglas C. Schmidt
//
// ============================================================================
#ifndef _PM_SERVER_H
#define _PM_SERVER_H
#include "Protocol_Manager.h"
class PM_Server : public Protocol_Manager
{
// = TITLE
// Handle the server's lookup table abstraction.
public:
PM_Server (void);
virtual ~PM_Server (void);
virtual int encode (char *packet, int &total_bytes) = 0;
virtual int decode (char *packet, int &total_bytes) = 0;
virtual int process (void);
protected:
virtual char *handle_protocol_entries (char *bp,
Drwho_Node *hp);
virtual Protocol_Record *insert_protocol_info (Protocol_Record &protocol_record);
};
#endif /* _PM_SERVER_H */
|