From ba066c34dde204aa192d03a23a81356374d93731 Mon Sep 17 00:00:00 2001 From: chatty Date: Wed, 7 Apr 1993 11:50:31 +0000 Subject: Initial revision --- comm/OLD/PortServerReq.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 comm/OLD/PortServerReq.h (limited to 'comm/OLD/PortServerReq.h') diff --git a/comm/OLD/PortServerReq.h b/comm/OLD/PortServerReq.h new file mode 100644 index 0000000..febde80 --- /dev/null +++ b/comm/OLD/PortServerReq.h @@ -0,0 +1,45 @@ +/* + * The Unix Channel + * + * by Michel Beaudouin-Lafon + * + * Copyright 1990-1993 + * Laboratoire de Recherche en Informatique (LRI) + * + * Port server requests + * + * $Id$ + * $CurLog$ + */ + +#ifndef PortServerReq_H_ +#define PortServerReq_H_ + +#include "MsgBuffer.h" +#include "Message.h" + +enum PortServMessages { + PortServRegister, PortServRemove, PortServInquire, + PortServMatch, PortServEndMatch, PortServAnswer, + PortServFail, PortServDump, PortServQuit +}; + +class UchPortServerReq : public UchMessage { +public: + sword Type; + lword Host; + sword Port; + const char* Key; + lword Ident; + + UchPortServerReq (); + UchPortServerReq (sword); + UchPortServerReq (sword, lword, sword, lword, const char* = 0); + ~UchPortServerReq (); + +inline void SetKey (const char* k) { Key = k; } + void ReadFrom (UchMsgBuffer&, lword); + void WriteTo (UchMsgBuffer&); +}; + +#endif /* PortServerReq_H_ */ -- cgit v1.1