| 9 | #include "trace.h" |
| 10 | |
| 11 | void SocketTimerSetSocket(SocketTimer *const socket_timer, |
| 12 | const int socket) { |
| 13 | socket_timer->socket = socket; |
| 14 | OPENER_TRACE_INFO("Adds socket %d to socket timers\n", socket); |
| 15 | } |
| 16 | |
| 17 | void SocketTimerSetLastUpdate(SocketTimer *const socket_timer, |
| 18 | const MilliSeconds actual_time) { |
no outgoing calls
no test coverage detected