summaryrefslogtreecommitdiff
path: root/comm
diff options
context:
space:
mode:
authorchatty1993-08-17 16:11:53 +0000
committerchatty1993-08-17 16:11:53 +0000
commit3a1b4d578a18e200168cfeddba0b8a12f552f2e1 (patch)
tree3287c448b3b2e800b9409348c1f81e13b6b15398 /comm
parentda823819c7cdb88bd1d3a94d705b1f4371b5469d (diff)
downloadivy-league-3a1b4d578a18e200168cfeddba0b8a12f552f2e1.zip
ivy-league-3a1b4d578a18e200168cfeddba0b8a12f552f2e1.tar.gz
ivy-league-3a1b4d578a18e200168cfeddba0b8a12f552f2e1.tar.bz2
ivy-league-3a1b4d578a18e200168cfeddba0b8a12f552f2e1.tar.xz
Added Multiplexer arg to constr and Init of TextService
Diffstat (limited to 'comm')
-rw-r--r--comm/OLD/TextStream.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/comm/OLD/TextStream.h b/comm/OLD/TextStream.h
index 0b31192..d7527ad 100644
--- a/comm/OLD/TextStream.h
+++ b/comm/OLD/TextStream.h
@@ -109,6 +109,7 @@ inline void Send (const UchTextLine& l) { Append (l); DoSend (); }
class UchTextService : public UchTextStream {
friend class UchServiceStarter;
+
public:
enum status {
isUnavailable, // address not found in port server
@@ -135,10 +136,10 @@ virtual void AbandonRestart ();
void DoSend ();
public:
- UchTextService (const char*, const char* = 0);
+ UchTextService (UchBaseMultiplexer&, const char*, const char* = 0);
UchTextService ();
~UchTextService ();
- void Init (const char*, const char* = 0);
+ void Init (UchBaseMultiplexer&, const char*, const char* = 0);
status GetStatus () { return StatusFlag; }
int GetRetryTime ();
int GetMaxRetries ();