summaryrefslogtreecommitdiff
path: root/apps/drwho/PMC_Ruser.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-07 04:49:01 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-07 04:49:01 +0000
commitdceee5506c4b747d6c3801d3f1649f9305dff2d5 (patch)
treec487fc2eb5a13824b27c6983a5620f90c4442fe8 /apps/drwho/PMC_Ruser.h
parent027290ebc37d5dd85440815f3d5840cd83b51b7a (diff)
downloadATCD-dceee5506c4b747d6c3801d3f1649f9305dff2d5.tar.gz
*** empty log message ***
Diffstat (limited to 'apps/drwho/PMC_Ruser.h')
-rw-r--r--apps/drwho/PMC_Ruser.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/apps/drwho/PMC_Ruser.h b/apps/drwho/PMC_Ruser.h
new file mode 100644
index 00000000000..936f29854d0
--- /dev/null
+++ b/apps/drwho/PMC_Ruser.h
@@ -0,0 +1,29 @@
+/* -*- C++ -*- */
+// $Id$
+
+/* Provides the client's lookup table abstraction for `ruser' users... */
+
+#ifndef _FMC_RUSER_H
+#define _FMC_RUSER_H
+
+#include "PM_Client.h"
+
+class PMC_Ruser : public PM_Client
+{
+protected:
+ char *handle_protocol_entries (char *cp, char *host_name, char * = 0);
+ 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);
+
+public:
+ PMC_Ruser (void);
+ virtual void process (void);
+};
+
+#ifdef __OPTIMIZE__
+inline
+PMC_Ruser::PMC_Ruser (void)
+{}
+#endif /* __OPTIMIZE__ */
+#endif /* _FMC_RUSER_H */