| 344 | } |
| 345 | |
| 346 | void BOBCommandSession::SendReplyOK (std::string_view msg) |
| 347 | { |
| 348 | std::ostream os(&m_SendBuffer); |
| 349 | os << "OK"; |
| 350 | if (!msg.empty ()) |
| 351 | os << " " << msg; |
| 352 | os << std::endl; |
| 353 | Send (); |
| 354 | } |
| 355 | |
| 356 | void BOBCommandSession::SendReplyOK (const std::vector<std::string_view>& strings) |
| 357 | { |
no outgoing calls
no test coverage detected