mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2026-01-28 01:27:16 +01:00
21 lines
420 B
C
21 lines
420 B
C
/*
|
|
* heartbeat.h - CWMP HeartBeat mechanism
|
|
*
|
|
* Copyright (C) 2022, IOPSYS Software Solutions AB.
|
|
*
|
|
* Author Omar Kallel <omar.kallel@pivasoftware.com>
|
|
*
|
|
* See LICENSE file for license related information.
|
|
*
|
|
*/
|
|
#ifndef HEARTBEAT_H
|
|
#define HEARTBEAT_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
extern struct uloop_timeout heartbeat_session_timer;
|
|
|
|
void intiate_heartbeat_procedures();
|
|
void reinit_heartbeat_procedures();
|
|
|
|
#endif
|