+ // wait until input/output becomes available or m_timeout expires
+ //
+ // returns true if we do have input/output or false on timeout or error
+ // (also sets m_error accordingly)
+ bool BlockForInputWithTimeout()
+ { return DoBlockWithTimeout(wxSOCKET_INPUT_FLAG); }
+ bool BlockForOutputWithTimeout()
+ { return DoBlockWithTimeout(wxSOCKET_OUTPUT_FLAG); }
+