summaryrefslogtreecommitdiff
path: root/comm/Datagram.h
diff options
context:
space:
mode:
authorsc2000-11-28 17:07:47 +0000
committersc2000-11-28 17:07:47 +0000
commitee937667fd0ecd82faab4c88d756b906fb625f1a (patch)
tree19e679318b5cb87e8be1a05a7bbc9ba5568d0814 /comm/Datagram.h
parent1326b11d65f7020f5f6c691305d2c090b064bd04 (diff)
downloadivy-league-ee937667fd0ecd82faab4c88d756b906fb625f1a.zip
ivy-league-ee937667fd0ecd82faab4c88d756b906fb625f1a.tar.gz
ivy-league-ee937667fd0ecd82faab4c88d756b906fb625f1a.tar.bz2
ivy-league-ee937667fd0ecd82faab4c88d756b906fb625f1a.tar.xz
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
Diffstat (limited to 'comm/Datagram.h')
-rw-r--r--comm/Datagram.h26
1 files changed, 13 insertions, 13 deletions
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_ */