summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/PMS_Ruser.h
blob: 4b040bf8f328d8f7519fa1dfef5add3700e44eb3 (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
/* -*- C++ -*- */

//=============================================================================
/**
 *  @file    PMS_Ruser.h
 *
 *  $Id$
 *
 *  @author Douglas C. Schmidt
 */
//=============================================================================


#ifndef _PMS_RUSER_H
#define _PMS_RUSER_H

#include "PM_Server.h"

/**
 * @class PMS_Ruser
 *
 * @brief Provides the server's lookup table abstraction for `ruser' users...
 */
class PMS_Ruser : public PM_Server
{

public:
  PMS_Ruser (void);

protected:
  virtual char *handle_protocol_entries (char *bp, Drwho_Node *hp);
  virtual Protocol_Record *insert_protocol_info (Protocol_Record &protocol_record);
  virtual int encode (char *packet, int &total_bytes);
  virtual int decode (char *packet, int &total_bytes);
};

#endif /* _PMS_RUSER_H */