| 170 | } |
| 171 | |
| 172 | bool Socket::CheckError(int result, const char* info) const |
| 173 | { |
| 174 | if (result != 0) |
| 175 | { |
| 176 | ReportError(info); |
| 177 | return false; |
| 178 | } |
| 179 | return true; |
| 180 | } |
| 181 | |
| 182 | ////////////////////////////////////////////////////////////////////////////// |
| 183 | // ListenerSocket members |
nothing calls this directly
no outgoing calls
no test coverage detected