summaryrefslogtreecommitdiff
path: root/comm/OLD/Server.h
diff options
context:
space:
mode:
authorchatty1993-07-27 13:55:14 +0000
committerchatty1993-07-27 13:55:14 +0000
commit4f67aabc7baa77bdb27043f348ffaf7f6d43b4a1 (patch)
treeed8d98bd91af30f04546cdacd0611ddf0c769380 /comm/OLD/Server.h
parente0b1bf56fae7f31706067564527156644a7a5fc2 (diff)
downloadivy-league-4f67aabc7baa77bdb27043f348ffaf7f6d43b4a1.zip
ivy-league-4f67aabc7baa77bdb27043f348ffaf7f6d43b4a1.tar.gz
ivy-league-4f67aabc7baa77bdb27043f348ffaf7f6d43b4a1.tar.bz2
ivy-league-4f67aabc7baa77bdb27043f348ffaf7f6d43b4a1.tar.xz
UchMultiplexer -> UchBaseMultiplexer
Diffstat (limited to 'comm/OLD/Server.h')
-rw-r--r--comm/OLD/Server.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/comm/OLD/Server.h b/comm/OLD/Server.h
index 71f24e2..3724b15 100644
--- a/comm/OLD/Server.h
+++ b/comm/OLD/Server.h
@@ -26,7 +26,7 @@ class UchClient : public UchMsgStream {
friend class UchServer;
protected:
- UchServer *MyServer;
+ UchServer* MyServer;
public:
UchClient ();
@@ -50,7 +50,7 @@ protected:
#else
CcuList Clients;
#endif
- pUchMultiplexer ChanSet;
+ pUchBaseMultiplexer Mpx;
public:
UchServer ();
@@ -61,8 +61,8 @@ public:
UchChannel* Copy () const;
void HandleRead ();
- bool Setup (UchMultiplexer* cs = 0);
-inline UchMultiplexer* GetMultiplexer () { return ChanSet; }
+ bool Setup (UchBaseMultiplexer* cs = 0);
+inline UchBaseMultiplexer* GetMultiplexer () { return Mpx; }
void RemoveClient (UchClient*);
MPX_RES Run ();
void Unlisten ();