| 69 | } |
| 70 | |
| 71 | std::string MEndpoint::createInfo() const { |
| 72 | std::stringstream ss; |
| 73 | ss << TAG << " {sent:" << m_n_messages_sent |
| 74 | << " send_failed:" << m_n_messages_send_failed |
| 75 | << " recv:" << m_n_messages_received |
| 76 | << " alive:" << (isAlive() ? "Y" : "N") << "}\n"; |
| 77 | return ss.str(); |
| 78 | } |
| 79 | |
| 80 | void MEndpoint::parseNewData(const uint8_t* data, const int data_len) { |
| 81 | //<<TAG<<" received data:"<<data_len<<" |
no outgoing calls