diff options
author | Pixel <Pixel> | 2001-12-03 17:19:39 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-12-03 17:19:39 +0000 |
commit | 0fd3b447119000a3b29fd46fed6b955198e5d7de (patch) | |
tree | 130fad408c5c1657355884453624e226279fa3ab /include/Socket.h | |
parent | ebdeb96f4f8275ab45cf9819cb3624dcf49a1b2b (diff) |
Zlib done...
Diffstat (limited to 'include/Socket.h')
-rw-r--r-- | include/Socket.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/Socket.h b/include/Socket.h index a8076e3..b8ea05e 100644 --- a/include/Socket.h +++ b/include/Socket.h @@ -22,10 +22,12 @@ class Socket : public Handle { virtual bool CanWrite(); virtual String GetName(); int GetPort(); + void CloseWrite(); + void CloseRead(); private: Socket(int s); - bool connected, listening; + bool connected, listening, writeclosed, readclosed; }; #else |