Blame keepalived/include/vrrp_notify.h

Packit c22fc9
/*
Packit c22fc9
 * Soft:        Vrrpd is an implementation of VRRPv2 as specified in rfc2338.
Packit c22fc9
 *              VRRP is a protocol which elect a master server on a LAN. If the
Packit c22fc9
 *              master fails, a backup server takes over.
Packit c22fc9
 *              The original implementation has been made by jerome etienne.
Packit c22fc9
 *
Packit c22fc9
 * Part:        vrrp_notify.c include file.
Packit c22fc9
 *
Packit c22fc9
 * Author:      Alexandre Cassen, <acassen@linux-vs.org>
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) 2001-2017 Alexandre Cassen, <acassen@gmail.com>
Packit c22fc9
 */
Packit c22fc9
Packit c22fc9
#ifndef _VRRP_NOTIFY_H
Packit c22fc9
#define _VRRP_NOTIFY_H
Packit c22fc9
Packit c22fc9
/* local include */
Packit c22fc9
#include "vrrp.h"
Packit c22fc9
Packit c22fc9
extern void send_event_notify(vrrp_t *, int);
Packit c22fc9
extern void send_instance_notifies(vrrp_t *);
Packit c22fc9
extern void send_group_notifies(vrrp_sgroup_t *);
Packit c22fc9
extern void notify_shutdown(void);
Packit c22fc9
Packit c22fc9
#endif