From ba066c34dde204aa192d03a23a81356374d93731 Mon Sep 17 00:00:00 2001 From: chatty Date: Wed, 7 Apr 1993 11:50:31 +0000 Subject: Initial revision --- comm/Datagram.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 comm/Datagram.h (limited to 'comm/Datagram.h') diff --git a/comm/Datagram.h b/comm/Datagram.h new file mode 100644 index 0000000..3ac6b36 --- /dev/null +++ b/comm/Datagram.h @@ -0,0 +1,40 @@ +/* + * The Unix Channel + * + * by Michel Beaudouin-Lafon + * + * Copyright 1990-1993 + * Laboratoire de Recherche en Informatique (LRI) + * + * Datagrams + * + * $Id$ + * $CurLog$ + */ + +#ifndef Datagram_H_ +#define Datagram_H_ + +#include "cplus_bugs.h" +#include "Socket.h" + +class UchDatagram : public UchSocket { +protected: + pUchAddress FAddr; +public: + UchDatagram (); + UchDatagram (UchAddress*, UchAddress*); + ~UchDatagram (); + UchDatagram (const UchDatagram& d); + UchChannel* Copy () const; + int SockType (); + int Send (byte*, int, UchAddress&); + int Receive (byte*, int); +inline UchAddress* From () { return FAddr; } + int Reply (byte*, int); + int Send (UchMsgBuffer& b, UchAddress& a, bool = FALSE); + int Receive (UchMsgBuffer& b); + int Reply (UchMsgBuffer& b, bool = FALSE); +}; + +#endif /* Datagram_H_ */ -- cgit v1.1