-
Notifications
You must be signed in to change notification settings - Fork 9
/
vrrp_rfc.h
54 lines (45 loc) · 1.21 KB
/
vrrp_rfc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* vrrp_rfc.h
*
* Copyright (C) 2014 Arnaud Andre
*
* This file is part of uvrrpd.
*
* uvrrpd 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 Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* uvrrpd is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with uvrrpd. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _VRRP_RFC_H_
#define _VRRP_RFC_H_
#include <stdint.h>
/*
* vrrphdr
* Header structure for rfc3768 et rfc5798
*/
struct vrrphdr {
uint8_t version_type; /* 0-3=version, 4-7=type */
uint8_t vrid;
uint8_t priority;
uint8_t naddr;
union {
/* rfc 3768 */
struct {
uint8_t auth_type;
uint8_t adv_int;
};
/* rfc 5798 */
uint16_t max_adv_int; /* 0-3=rsvd, 4-5=adv_int */
};
uint16_t chksum;
/* virtual IPs start here */
} __attribute__ ((packed));
#endif /* _VRRP_RFC_H_ */