summaryrefslogtreecommitdiff
path: root/comm/OLD/Server.h
diff options
context:
space:
mode:
Diffstat (limited to 'comm/OLD/Server.h')
-rw-r--r--comm/OLD/Server.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/comm/OLD/Server.h b/comm/OLD/Server.h
index 7f8c597..71f24e2 100644
--- a/comm/OLD/Server.h
+++ b/comm/OLD/Server.h
@@ -45,7 +45,11 @@ class UchServer : public UchStream {
friend class UchClient;
protected:
+#ifndef CPLUS_BUG19
CcuListOf <UchClient> Clients;
+#else
+ CcuList Clients;
+#endif
pUchMultiplexer ChanSet;
public:
@@ -60,7 +64,7 @@ public:
bool Setup (UchMultiplexer* cs = 0);
inline UchMultiplexer* GetMultiplexer () { return ChanSet; }
void RemoveClient (UchClient*);
- void Run ();
+ MPX_RES Run ();
void Unlisten ();
void Broadcast (UchMessage&, bool = FALSE);
void Broadcast (UchMessage&, UchClient*, bool = FALSE);