Add tests for import/export errors
[tinc] / src / watchdog.h
1 #ifndef TINC_WATCHDOG_H
2 #define TINC_WATCHDOG_H
3
4 // Start sending keepalive notifications to watchdog.
5 // Called after initialization is finished before entering the event loop.
6 void watchdog_start(void);
7
8 // Stop sending keepalive notifications.
9 // Called shortly before exiting.
10 void watchdog_stop(void);
11
12 // Send keepalive notification.
13 void watchdog_ping(void);
14
15 #endif // TINC_WATCHDOG_H