#ifndef RPROXY_HEALTH_CHECK_H
|
|
#define RPROXY_HEALTH_CHECK_H
|
|
|
|
#include "types.h"
|
|
|
|
void health_check_init(void);
|
|
void health_check_cleanup(void);
|
|
void health_check_run(void);
|
|
int health_check_is_healthy(const char *hostname);
|
|
|
|
#endif
|