| 389 | } |
| 390 | |
| 391 | int Connection::onSdTimerEvent(sd_event_source */*s*/, uint64_t /*usec*/, void *userdata) |
| 392 | { |
| 393 | auto *connection = static_cast<Connection*>(userdata); |
| 394 | assert(connection != nullptr); |
| 395 | |
| 396 | (void)connection->processPendingEvent(); |
| 397 | |
| 398 | return 1; |
| 399 | } |
| 400 | |
| 401 | int Connection::onSdIoEvent(sd_event_source */*s*/, int /*fd*/, uint32_t /*revents*/, void *userdata) |
| 402 | { |
nothing calls this directly
no test coverage detected