summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/PMS_Ruser.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/drwho/PMS_Ruser.h')
-rw-r--r--ACE/apps/drwho/PMS_Ruser.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/ACE/apps/drwho/PMS_Ruser.h b/ACE/apps/drwho/PMS_Ruser.h
new file mode 100644
index 00000000000..f26e916549f
--- /dev/null
+++ b/ACE/apps/drwho/PMS_Ruser.h
@@ -0,0 +1,37 @@
+/* -*- C++ -*- */
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// drwho
+//
+// = FILENAME
+// PMS_Ruser.h
+//
+// = AUTHOR
+// Douglas C. Schmidt
+//
+// ============================================================================
+
+#ifndef _PMS_RUSER_H
+#define _PMS_RUSER_H
+
+#include "PM_Server.h"
+
+class PMS_Ruser : public PM_Server
+{
+ // = TITLE
+ // Provides the server's lookup table abstraction for `ruser' users...
+
+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 */