11 lines
207 B
C
11 lines
207 B
C
#pragma once
|
|
|
|
struct peer;
|
|
|
|
void wakeup_init();
|
|
void wakeup_cleanup();
|
|
int wakeup_get_delay();
|
|
void wakeup_dispatch();
|
|
void wakeup_add(struct peer *, uint32_t);
|
|
uint32_t wakeup_get_retry_delay_ms(uint32_t);
|