| 322 | } |
| 323 | |
| 324 | void DynSock::Pipe::PushBytes(const void* buf, size_t len) |
| 325 | { |
| 326 | LOCK(m_mutex); |
| 327 | const uint8_t* b = static_cast<const uint8_t*>(buf); |
| 328 | m_data.insert(m_data.end(), b, b + len); |
| 329 | m_cond.notify_all(); |
| 330 | } |
| 331 | |
| 332 | void DynSock::Pipe::Eof() |
| 333 | { |
no test coverage detected