| 365 | } |
| 366 | |
| 367 | void BOBCommandSession::SendReplyError (std::string_view msg) |
| 368 | { |
| 369 | std::ostream os(&m_SendBuffer); |
| 370 | os << "ERROR " << msg << std::endl; |
| 371 | Send (); |
| 372 | } |
| 373 | |
| 374 | void BOBCommandSession::SendVersion () |
| 375 | { |
no outgoing calls
no test coverage detected