summaryrefslogtreecommitdiff
path: root/comm/BufStream.h
diff options
context:
space:
mode:
authorsc2000-11-28 17:07:47 +0000
committersc2000-11-28 17:07:47 +0000
commitee937667fd0ecd82faab4c88d756b906fb625f1a (patch)
tree19e679318b5cb87e8be1a05a7bbc9ba5568d0814 /comm/BufStream.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/BufStream.h')
-rw-r--r--comm/BufStream.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/comm/BufStream.h b/comm/BufStream.h
index a221bfa..dc2511e 100644
--- a/comm/BufStream.h
+++ b/comm/BufStream.h
@@ -10,6 +10,7 @@
*
* $Id$
* $CurLog$
+ * Created from bits of MsgStream.h
*/
#ifndef BufStream_H_
@@ -18,14 +19,14 @@
#include "Stream.h"
#include "MsgBuffer.h"
-class UchBufStream : public UchStream {
+class IvlBufStream : public IvlStream {
protected:
- UchMsgBuffer InBuffer;
- UchMsgBuffer OutBuffer;
+ IvlMsgBuffer InBuffer;
+ IvlMsgBuffer OutBuffer;
int OutSize;
bool Sync;
- UchBufStream (const UchBufStream&);
+ IvlBufStream (const IvlBufStream&);
int ReadInput ();
void HandleWrite ();
@@ -42,12 +43,12 @@ protected:
bool ReadByte (byte&);
bool ReadChar (char&);
int ReadString (char*, int);
- int ReadString (CcuString&);
+ int ReadString (IvlString&);
bool ReadBuf (byte*, int);
public:
- UchBufStream (UchAddress* = 0, UchAddress* = 0);
- ~UchBufStream ();
+ IvlBufStream (IvlAddress* = 0, IvlAddress* = 0);
+ ~IvlBufStream ();
void InputBuffer (int min, int grow, int max);
void OutputBuffer (int min, int grow, int max);