| 39 | |
| 40 | |
| 41 | void HTTPStreamBuf::close() |
| 42 | { |
| 43 | if (_mode & std::ios::out) |
| 44 | { |
| 45 | sync(); |
| 46 | if (!_session.getKeepAlive()) |
| 47 | _session.socket().shutdownSend(); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | |
| 52 | int HTTPStreamBuf::readFromDevice(char* buffer, std::streamsize length) |
no test coverage detected