summaryrefslogtreecommitdiff
path: root/comm/Datagram.h
diff options
context:
space:
mode:
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_ */