| 359 | } |
| 360 | |
| 361 | int64_t clientSendData(const uint8_t *data, const int len) { |
| 362 | return sendData(m_fd, data, len); |
| 363 | } |
| 364 | |
| 365 | int64_t sendData(const int fd, const uint8_t *data, const int len) { |
| 366 | if (data == NULL || len <= 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected