diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-01-29 20:59:01 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-05-17 02:27:08 +0200 |
commit | 63d4bd12ca9a7fc666dcd112c940f4ac693b32ae (patch) | |
tree | 7ea0c8ee29499c0e26a235b74b8fbfbf86ebf77a /vrrpd/vrrp.h | |
parent | vrrpd: improve show vrrp (diff) | |
download | frr-63d4bd12ca9a7fc666dcd112c940f4ac693b32ae.tar.xz frr-63d4bd12ca9a7fc666dcd112c940f4ac693b32ae.zip |
vrrpd: fix headers
* Add include guards where missing
* Add include guard comments where missing
* Fix copyright notices
* Sort includes
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'vrrpd/vrrp.h')
-rw-r--r-- | vrrpd/vrrp.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/vrrpd/vrrp.h b/vrrpd/vrrp.h index 0249b3e9a..d060b95df 100644 --- a/vrrpd/vrrp.h +++ b/vrrpd/vrrp.h @@ -1,7 +1,7 @@ /* - * VRRPD global definitions and state machine - * Copyright (C) 2018 Cumulus Networks, Inc. - * Quentin Young + * VRRP global definitions and state machine. + * Copyright (C) 2018-2019 Cumulus Networks, Inc. + * Quentin Young * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free @@ -17,8 +17,8 @@ * with this program; see the file COPYING; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef _VRRP_H -#define _VRRP_H +#ifndef __VRRP_H__ +#define __VRRP_H__ #include <zebra.h> #include <netinet/ip.h> @@ -335,4 +335,4 @@ int vrrp_event(struct vrrp_router *r, int event); */ struct vrrp_vrouter *vrrp_lookup(uint8_t vrid); -#endif /* _VRRP_H */ +#endif /* __VRRP_H__ */ |