| 1438 | { return stream_.send(msg); } |
| 1439 | |
| 1440 | std::pair<OutBuffer, ErrBuffer> communicate(const char* msg, size_t length) |
| 1441 | { |
| 1442 | auto res = stream_.communicate(msg, length); |
| 1443 | retcode_ = wait(); |
| 1444 | return res; |
| 1445 | } |
| 1446 | |
| 1447 | std::pair<OutBuffer, ErrBuffer> communicate(const std::string& msg) |
| 1448 | { |
nothing calls this directly
no test coverage detected