diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-05-17 05:56:26 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-05-17 05:56:26 +0000 |
commit | e0e7932a122614a0ff566fbfd8de5776de8b9f6d (patch) | |
tree | ae87ab46b677bfd05f340051a56f1edbc94862a9 /src/socket.cpp | |
parent | dda94f3b53e02e117e6eb5758afa1410e1664c9f (diff) | |
download | libbu++-e0e7932a122614a0ff566fbfd8de5776de8b9f6d.tar.gz libbu++-e0e7932a122614a0ff566fbfd8de5776de8b9f6d.tar.bz2 libbu++-e0e7932a122614a0ff566fbfd8de5776de8b9f6d.tar.xz libbu++-e0e7932a122614a0ff566fbfd8de5776de8b9f6d.zip |
Lots of cool new stuff, the Server class actually works for everything except
actually interacting with clients, and the Client class is almost there, except
that it doesn't really do anything yet.
Diffstat (limited to 'src/socket.cpp')
-rw-r--r-- | src/socket.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/socket.cpp b/src/socket.cpp index 455b5c8..441678a 100644 --- a/src/socket.cpp +++ b/src/socket.cpp | |||
@@ -231,3 +231,12 @@ bool Bu::Socket::canSeek() | |||
231 | return false; | 231 | return false; |
232 | } | 232 | } |
233 | 233 | ||
234 | bool Bu::Socket::isBlocking() | ||
235 | { | ||
236 | return false; | ||
237 | } | ||
238 | |||
239 | void Bu::Socket::setBlocking( bool bBlocking ) | ||
240 | { | ||
241 | } | ||
242 | |||