From ee937667fd0ecd82faab4c88d756b906fb625f1a Mon Sep 17 00:00:00 2001 From: sc Date: Tue, 28 Nov 2000 17:07:47 +0000 Subject: Integration into IvyLeague Uvh -> Ivl Multiplexer.* is renamed into Scheduler.* A few name conflicts in the merger with ex-DNN have been solved Imakefile is replaced by Makefile Created InetAddress.* and UnixAddress.* from Address.* Created IrdaAddress.* OLD/TextStream has been updated --- comm/Datagram.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'comm/Datagram.h') diff --git a/comm/Datagram.h b/comm/Datagram.h index cc7798f..e9ffd1e 100644 --- a/comm/Datagram.h +++ b/comm/Datagram.h @@ -16,27 +16,27 @@ #define Datagram_H_ #include "cplus_bugs.h" -#include "ccu/bool.h" -#include "ccu/word.h" +#include "ivl/bool.h" +#include "ivl/word.h" #include "Socket.h" -class UchDatagram : public UchSocket { +class IvlDatagram : public IvlSocket { protected: - UchAddress* FAddr; + IvlAddress* FAddr; public: - UchDatagram (UchAddress* = 0, UchAddress* = 0); - ~UchDatagram (); - UchDatagram (const UchDatagram& d); - UchChannel* Copy () const; + IvlDatagram (IvlAddress* = 0, IvlAddress* = 0); + ~IvlDatagram (); + IvlDatagram (const IvlDatagram& d); + IvlChannel* Copy () const; int SockType (); - int Send (byte*, int, UchAddress&); + int Send (byte*, int, IvlAddress&); int Receive (byte*, int); -inline UchAddress* From () { return FAddr; } +inline IvlAddress* 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); + int Send (IvlMsgBuffer& b, IvlAddress& a, bool = false); + int Receive (IvlMsgBuffer& b); + int Reply (IvlMsgBuffer& b, bool = false); }; #endif /* Datagram_H_ */ -- cgit v1.1