diff options
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 | |||