X-Git-Url: http://git.scottworley.com/tattlekey/blobdiff_plain/9d623c505470fead28a674a9b1c38a4969a62e43..42b148051a82adff71153a2e67d1eaef460437ec:/client/tattlekey.c diff --git a/client/tattlekey.c b/client/tattlekey.c index c5e500e..00ee326 100644 --- a/client/tattlekey.c +++ b/client/tattlekey.c @@ -55,7 +55,7 @@ static void time_to_send(uint _) { queue_try_add_ignoring_errors(&queue, &e); } -void set_send_alarm(int alarm, uint32_t now, uint32_t next_act_time) { +void set_resend_alarm(int alarm, uint32_t now, uint32_t next_act_time) { uint32_t sleep_duration = next_act_time - now; if (hardware_alarm_set_target(alarm, make_timeout_time_ms(sleep_duration * 1000))) @@ -72,7 +72,7 @@ void service_sleeps(int alarm, send_t *sleeping_sends, pheap_t *sleeps_heap) { if (act_time == -1) return; if (act_time > now) { - set_send_alarm(alarm, now, act_time); + set_resend_alarm(alarm, now, act_time); return; } pheap_node_id_t i = ph_remove_head(sleeps_heap, false);