Blame keepalived/include/bfd_daemon.h

Packit c22fc9
/*
Packit c22fc9
 * Soft:        Keepalived is a failover program for the LVS project
Packit c22fc9
 *              <www.linuxvirtualserver.org>. It monitor & manipulate
Packit c22fc9
 *              a loadbalanced server pool using multi-layer checks.
Packit c22fc9
 *
Packit c22fc9
 * Part:        bfd_daemon.c include file.
Packit c22fc9
 *
Packit c22fc9
 * Author:      Ilya Voronin, <ivoronin@gmail.com>
Packit c22fc9
 *
Packit c22fc9
 *              This program is distributed in the hope that it will be useful,
Packit c22fc9
 *              but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit c22fc9
 *              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Packit c22fc9
 *              See the GNU General Public License for more details.
Packit c22fc9
 *
Packit c22fc9
 *              This program is free software; you can redistribute it and/or
Packit c22fc9
 *              modify it under the terms of the GNU General Public License
Packit c22fc9
 *              as published by the Free Software Foundation; either version
Packit c22fc9
 *              2 of the License, or (at your option) any later version.
Packit c22fc9
 *
Packit c22fc9
 * Copyright (C) 2015-2017 Alexandre Cassen, <acassen@gmail.com>
Packit c22fc9
 */
Packit c22fc9
Packit c22fc9
#ifndef _BFD_DAEMON_H_
Packit c22fc9
#define _BFD_DAEMON_H_
Packit c22fc9
Packit c22fc9
#define PROG_BFD "Keepalived_bfd"
Packit c22fc9
Packit c22fc9
#ifdef _WITH_VRRP_
Packit c22fc9
extern int bfd_vrrp_event_pipe[2];
Packit c22fc9
#endif
Packit c22fc9
#ifdef _WITH_LVS_
Packit c22fc9
extern int bfd_checker_event_pipe[2];
Packit c22fc9
#endif
Packit c22fc9
Packit c22fc9
extern void open_bfd_pipes(void);
Packit c22fc9
extern int start_bfd_child(void);
Packit c22fc9
extern void bfd_validate_config(void);
Packit c22fc9
#ifdef THREAD_DUMP
Packit c22fc9
extern void register_bfd_parent_addresses(void);
Packit c22fc9
#endif
Packit c22fc9
Packit c22fc9
#endif				/* _BFD_DAEMON_H_ */