| 15 | } |
| 16 | |
| 17 | void SocketTimerSetLastUpdate(SocketTimer *const socket_timer, |
| 18 | const MilliSeconds actual_time) { |
| 19 | if (NULL != socket_timer) { |
| 20 | socket_timer->last_update = actual_time; |
| 21 | OPENER_TRACE_INFO("Sets time stamp for socket %d\n", socket_timer->socket); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | MilliSeconds SocketTimerGetLastUpdate(SocketTimer *const socket_timer) { |
| 26 | return socket_timer->last_update; |
no outgoing calls