| 1429 | void set_err_buf_cap(size_t cap) { stream_.set_err_buf_cap(cap); } |
| 1430 | |
| 1431 | int send(const char* msg, size_t length) |
| 1432 | { return stream_.send(msg, length); } |
| 1433 | |
| 1434 | int send(const std::string& msg) |
| 1435 | { return send(msg.c_str(), msg.size()); } |