[acassen/keepalived] 4a1d06: Fix building with --disable-lvs
Alexandre Cassen <[email protected]>
| Newsgroups | gmane.linux.keepalived.devel |
|---|---|
| Message-ID | <56dc441861b86_20d93ff5348ff2a0229335@hookshot-fe1-cp1-prd.iad.github.net.mail> |
Branch: refs/heads/master
Home: https://github.com/acassen/keepalived
Commit: 4a1d064fbcbc0f9d107fa26200bdecb144853801
https://github.com/acassen/keepalived/commit/4a1d064fbcbc0f9d107fa26200bdecb144853801
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/include/check_data.h
Log Message:
-----------
Fix building with --disable-lvs
Commit 2761edb9b caused building with --disable-lvs to fail.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 488edd566b3ad4e1fe7f28506c0f4c924955f75c
https://github.com/acassen/keepalived/commit/488edd566b3ad4e1fe7f28506c0f4c924955f75c
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M doc/man/man5/keepalived.conf.5
Log Message:
-----------
Update keepalived(5) man page for sctp and persistence engine support
Signed-off-by: Quentin Armitage <[email protected]>
Commit: a5aa23321a5fbf071bedffe5f4ca39a2109bcd7b
https://github.com/acassen/keepalived/commit/a5aa23321a5fbf071bedffe5f4ca39a2109bcd7b
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M Makefile.in
A configure.ac
R configure.in
Log Message:
-----------
Stop autoconf complaining
Recent versions of autoconf want to have configure.ac rather than
configure.in. Older version work with either.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 06fb6fd59d4e7fdcf93994be738308e367d90a20
https://github.com/acassen/keepalived/commit/06fb6fd59d4e7fdcf93994be738308e367d90a20
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_scheduler.c
Log Message:
-----------
Use defined value for maximum VRRP priority
Signed-off-by: Quentin Armitage <[email protected]>
Commit: caed55a7812a6f6b2bd947909fddee302b0f4252
https://github.com/acassen/keepalived/commit/caed55a7812a6f6b2bd947909fddee302b0f4252
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_scheduler.c
Log Message:
-----------
Simplify scheduler code vrrp_leave_fault()
Two pairs of code blocks were repeated, and each pair could be
reduced to occuring only once if the conditions were merged.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 6b20916a317c931658cedd5f1ecffe85990bf144
https://github.com/acassen/keepalived/commit/6b20916a317c931658cedd5f1ecffe85990bf144
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp.c
Log Message:
-----------
If VRRP priority is 255 and not nopreempt, configure like state MASTER
If a virtual router has priority 255, the RFCs state that it should preempt
and transition to master mode immediately.
To allow for nopreempt being specified, and also to ensure sync groups can
still work, this commit effectived sets state MASTER if nopremept is not
specified and the priority is 255.
In other words, the following configuration:
priority 255
preempt # this is the default
will be the same as specifying:
priority 255
preempt # this is the default
state MASTER
it simply removes the need to specify "state MASTER" if the priority is
255 and nopreempt is not set.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 4ed2ce1582b86fbb547baa9f0273919f1efc4959
https://github.com/acassen/keepalived/commit/4ed2ce1582b86fbb547baa9f0273919f1efc4959
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/include/vrrp.h
M keepalived/vrrp/vrrp.c
Log Message:
-----------
Ensure number of VIPs doesn't exceed 255 per instance
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 497b51e6f6bd37ea0a1f7d36381f0004065f2641
https://github.com/acassen/keepalived/commit/497b51e6f6bd37ea0a1f7d36381f0004065f2641
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_netlink.c
Log Message:
-----------
Don't check second time if IFLA_IFNAME is NULL
Signed-off-by: Quentin Armitage <[email protected]>
Commit: c6787731f8e7d715d87fa3968775026a6d129051
https://github.com/acassen/keepalived/commit/c6787731f8e7d715d87fa3968775026a6d129051
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_daemon.c
Log Message:
-----------
Dump interface details with rest of config
Signed-off-by: Quentin Armitage <[email protected]>
Commit: ad043de3e6636276290bb31f8766166b91b12b90
https://github.com/acassen/keepalived/commit/ad043de3e6636276290bb31f8766166b91b12b90
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp.c
Log Message:
-----------
When becoming master, block addresses before adding them
If not accept mode, entries are added to iptables/ipsets to block
traffic to the VIPs/eVIPS. These entries should be added BEFORE the
addresses themselves are added, to ensure there isn't a (small)
window when we might reply from the added addresses.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: a91d4cc82c82af8bfd017540aff74a6f410e94c0
https://github.com/acassen/keepalived/commit/a91d4cc82c82af8bfd017540aff74a6f410e94c0
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M doc/keepalived.conf.SYNOPSIS
Log Message:
-----------
Document virtual_rules
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 0040df65388dd4b25a8505a61def2ee6081a3bac
https://github.com/acassen/keepalived/commit/0040df65388dd4b25a8505a61def2ee6081a3bac
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/include/vrrp_ipaddress.h
M keepalived/vrrp/vrrp_ipaddress.c
M keepalived/vrrp/vrrp_iproute.c
M keepalived/vrrp/vrrp_iprule.c
M keepalived/vrrp/vrrp_print.c
Log Message:
-----------
Fix memory leak re some uses of ipaddresstos()
Many of the calls to ipaddresstos() weren't freeing the malloc'd
memory afterwards. This commit changes ipaddresstos() to use a
static buffer, or a buffer passed to ipaddresstos(), thereby avoiding
the use of malloc altogether.
The commit also simplifies dump_iprule() and dump_iproute() by avoiding
the use of intermediate buffers, and reducing the number of malloc's/free's.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: db0976f2a60dd302e02c2a51b8abfdadd9c4cf14
https://github.com/acassen/keepalived/commit/db0976f2a60dd302e02c2a51b8abfdadd9c4cf14
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/core/global_parser.c
Log Message:
-----------
Fix parsing ipset names
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 65b41efdc8afb506d5a2b23744921341f0376102
https://github.com/acassen/keepalived/commit/65b41efdc8afb506d5a2b23744921341f0376102
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/include/vrrp_if.h
M keepalived/include/vrrp_vmac.h
M keepalived/vrrp/vrrp.c
M keepalived/vrrp/vrrp_if.c
M keepalived/vrrp/vrrp_netlink.c
M keepalived/vrrp/vrrp_parser.c
M keepalived/vrrp/vrrp_vmac.c
Log Message:
-----------
Improve and fix finding vmacs left over from previous invocation
When netlink reports a new or existing interface, we can extract
information that allows us to determine if the interface is a macvlan,
and the type (e.g. private). We can then save that in the interface_t
structure, setting the vlan flag, and base ifindex.
When working out the interface name to use for VMAC instances, we can
then check the interfaces which are macvlans to see if any of them
match the vrrp instance in terms of mac address, underlying interface
and inet address family, and if so we can then reuse the macvlan interface.
Commit 9ae463e7f broke the finding of existing interfaces where the
configuration didn't specify the VMAC interface name, and simply created
a new interface. This commits now resolves that.
There is still an issue that if an interface was in MASTER mode when
keepalived terminated, when keepalived restarts it leaves the VIPs and
eVIPS on the interfaces, meaning that keepalived cannot receive VRRP
packets on the interface from the VRRP instance that has taken over, and
it also means that there are duplicate IP addresses on the network.
Another commit will resolve this issue.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: f4c10426ca0a7c3392422c22079f1b71e7d4ebe9
https://github.com/acassen/keepalived/commit/f4c10426ca0a7c3392422c22079f1b71e7d4ebe9
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/include/vrrp.h
M keepalived/include/vrrp_ipaddress.h
M keepalived/include/vrrp_ipset.h
M keepalived/include/vrrp_iptables.h
M keepalived/include/vrrp_iptables_calls.h
M keepalived/vrrp/vrrp.c
M keepalived/vrrp/vrrp_daemon.c
M keepalived/vrrp/vrrp_ipaddress.c
M keepalived/vrrp/vrrp_ipset.c
M keepalived/vrrp/vrrp_iptables.c
M keepalived/vrrp/vrrp_iptables_calls.c
M keepalived/vrrp/vrrp_scheduler.c
Log Message:
-----------
Remove ip addresses left over from previous failure
If keepalived terminates unexpectedly, for any instances for which
it was master, it leaves ip addresses configured on the interfaces.
When keepalived restarts, if it starts in backup mode, the addresses
must be removed. In addition, any iptables/ipsets entries added for
!accept_mode must also be removed, in order to avoid multiple entries
being created in iptables.
This commit removes any addresses and iptables/ipsets configuration
for any interfaces that exist when iptables starts up. If keepalived
shut down cleanly, that will only be for non-vmac interfaces, but if
it terminated unexpectedly, it can also be for any left-over vmacs.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 05b048c7e065736a59652415274e4ed26183b8ea
https://github.com/acassen/keepalived/commit/05b048c7e065736a59652415274e4ed26183b8ea
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M Makefile.in
M configure
M configure.ac
M genhash/http.c
M genhash/include/hash.h
M genhash/include/http.h
M genhash/include/main.h
M genhash/ssl.c
M keepalived/check/Makefile.in
M keepalived/check/check_http.c
M keepalived/check/check_misc.c
M keepalived/check/check_parser.c
M keepalived/check/check_smtp.c
M keepalived/check/check_snmp.c
M keepalived/check/check_ssl.c
M keepalived/check/ipvswrapper.c
M keepalived/check/ipwrapper.c
M keepalived/core/Makefile.in
M keepalived/core/global_parser.c
M keepalived/core/smtp.c
M keepalived/core/snmp.c
M keepalived/include/check_daemon.h
M keepalived/include/check_data.h
M keepalived/include/check_http.h
M keepalived/include/check_parser.h
M keepalived/include/check_snmp.h
M keepalived/include/global_parser.h
M keepalived/include/vrrp.h
M keepalived/include/vrrp_arp.h
M keepalived/include/vrrp_daemon.h
M keepalived/include/vrrp_if.h
M keepalived/include/vrrp_index.h
M keepalived/include/vrrp_ipaddress.h
M keepalived/include/vrrp_iproute.h
M keepalived/include/vrrp_iprule.h
M keepalived/include/vrrp_ipsecah.h
M keepalived/include/vrrp_ndisc.h
M keepalived/include/vrrp_netlink.h
M keepalived/include/vrrp_parser.h
M keepalived/include/vrrp_scheduler.h
M keepalived/include/vrrp_snmp.h
M keepalived/include/vrrp_sync.h
M keepalived/include/vrrp_track.h
M keepalived/include/vrrp_vmac.h
M keepalived/libipvs-2.6/ip_vs.h
M keepalived/libipvs-2.6/libipvs.c
M keepalived/vrrp/Makefile.in
M keepalived/vrrp/vrrp.c
M keepalived/vrrp/vrrp_if.c
M keepalived/vrrp/vrrp_index.c
M keepalived/vrrp/vrrp_iproute.c
M keepalived/vrrp/vrrp_iprule.c
M keepalived/vrrp/vrrp_iptables.c
M keepalived/vrrp/vrrp_netlink.c
M keepalived/vrrp/vrrp_notify.c
M keepalived/vrrp/vrrp_parser.c
M keepalived/vrrp/vrrp_print.c
M keepalived/vrrp/vrrp_scheduler.c
M keepalived/vrrp/vrrp_snmp.c
M keepalived/vrrp/vrrp_sync.c
M keepalived/vrrp/vrrp_track.c
M keepalived/vrrp/vrrp_vmac.c
M lib/Makefile.in
M lib/config.h.in
M lib/list.c
M lib/list.h
M lib/logger.c
M lib/logger.h
M lib/memory.h
M lib/parser.c
M lib/parser.h
M lib/scheduler.c
M lib/signals.c
M lib/signals.h
M lib/timer.c
M lib/timer.h
M lib/utils.c
M lib/vector.c
M lib/vector.h
Log Message:
-----------
Sort out extraneous space and tab characters
The commit removes spaces followed by tabs, trailing spaces and tabs,
and replaces occurrences of 8 spaces within tabs, except where the
spaces and or tabs occur within strings.
This has the benefit that if blocks of code are copied, git does not
complain when running git am on a file produced by git format-patch.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: f01614cd19e4ab1251aad73b2e270968145094b4
https://github.com/acassen/keepalived/commit/f01614cd19e4ab1251aad73b2e270968145094b4
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_snmp.c
Log Message:
-----------
Remove non existent SNMP column defines
Signed-off-by: Quentin Armitage <[email protected]>
Commit: f58c1b075c8aa99ce7b26c9b8c8a993ebb0760a4
https://github.com/acassen/keepalived/commit/f58c1b075c8aa99ce7b26c9b8c8a993ebb0760a4
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_snmp.c
Log Message:
-----------
Minor tidying of RFC SNMP code
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 43286a86afc4b4c51daaac1088f553b2216a911d
https://github.com/acassen/keepalived/commit/43286a86afc4b4c51daaac1088f553b2216a911d
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_snmp.c
Log Message:
-----------
Simplify RFC SNMP code
The code was checking VRRP version unnecessarily, and also had code
to return an index element which is not necessary.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 260c6916706e2c0844e0dab8f51b4a75de1812eb
https://github.com/acassen/keepalived/commit/260c6916706e2c0844e0dab8f51b4a75de1812eb
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_snmp.c
Log Message:
-----------
Don't send traps for SNMP MIBS which are not enabled
Signed-off-by: Quentin Armitage <[email protected]>
Commit: d40ae3281d7d07b596f9e86c3448922f5faa021d
https://github.com/acassen/keepalived/commit/d40ae3281d7d07b596f9e86c3448922f5faa021d
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_snmp.c
Log Message:
-----------
Don't register SNMP global OID if not handling it
If neither the checker nor the vrrp components of KEEPALIVED-MIB
are enabled, don't register the global OID.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 6d202368a1299037fa5b236a563eb7b7d40238df
https://github.com/acassen/keepalived/commit/6d202368a1299037fa5b236a563eb7b7d40238df
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_snmp.c
Log Message:
-----------
Parameters passed to traps don't need to be static
Signed-off-by: Quentin Armitage <[email protected]>
Commit: f4d1f3b2386d1894d6a895d7f3b584dac1caa084
https://github.com/acassen/keepalived/commit/f4d1f3b2386d1894d6a895d7f3b584dac1caa084
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/check/check_parser.c
M keepalived/vrrp/vrrp_parser.c
Log Message:
-----------
Fix --without-lvs and --without-vrrp configure options
Signed-off-by: Quentin Armitage <[email protected]>
Commit: 16d8a552e8fe3b7b9570cbe4409297cf8b7fbeef
https://github.com/acassen/keepalived/commit/16d8a552e8fe3b7b9570cbe4409297cf8b7fbeef
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_snmp.c
Log Message:
-----------
Ensure general MIB is enabled if --disable-lvs configured
Signed-off-by: Quentin Armitage <[email protected]>
Commit: c8c13c9c7da1b10aa64231bee31dfb664c1a4209
https://github.com/acassen/keepalived/commit/c8c13c9c7da1b10aa64231bee31dfb664c1a4209
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M keepalived/vrrp/vrrp_snmp.c
Log Message:
-----------
Avoid compiler warning re function definition to prototype
Signed-off-by: Quentin Armitage <[email protected]>
Commit: bd220ab1fc2ae341836e892a709bfb82134212d3
https://github.com/acassen/keepalived/commit/bd220ab1fc2ae341836e892a709bfb82134212d3
Author: Quentin Armitage <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M Makefile.in
M configure
M configure.ac
A doc/VRRPv3-MIB
M doc/keepalived.conf.SYNOPSIS
M doc/man/man5/keepalived.conf.5
M keepalived/core/global_data.c
M keepalived/core/global_parser.c
M keepalived/include/global_data.h
M keepalived/include/vrrp.h
M keepalived/include/vrrp_snmp.h
M keepalived/vrrp/Makefile.in
M keepalived/vrrp/vrrp.c
M keepalived/vrrp/vrrp_daemon.c
M keepalived/vrrp/vrrp_print.c
M keepalived/vrrp/vrrp_scheduler.c
M keepalived/vrrp/vrrp_snmp.c
Log Message:
-----------
Add RFC6527 SNMP (VRRPv3)
This commit adds read-only and notifiction support for SNMP for VRRPv3
in accordance with RFC6527.
Signed-off-by: Quentin Armitage <[email protected]>
Commit: d7d6527556a5d39d5f284564f056add3f56b0d57
https://github.com/acassen/keepalived/commit/d7d6527556a5d39d5f284564f056add3f56b0d57
Author: Alexandre Cassen <[email protected]>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M Makefile.in
M configure
A configure.ac
R configure.in
A doc/VRRPv3-MIB
M doc/keepalived.conf.SYNOPSIS
M doc/man/man5/keepalived.conf.5
M genhash/http.c
M genhash/include/hash.h
M genhash/include/http.h
M genhash/include/main.h
M genhash/ssl.c
M keepalived/check/Makefile.in
M keepalived/check/check_http.c
M keepalived/check/check_misc.c
M keepalived/check/check_parser.c
M keepalived/check/check_smtp.c
M keepalived/check/check_snmp.c
M keepalived/check/check_ssl.c
M keepalived/check/ipvswrapper.c
M keepalived/check/ipwrapper.c
M keepalived/core/Makefile.in
M keepalived/core/global_data.c
M keepalived/core/global_parser.c
M keepalived/core/smtp.c
M keepalived/core/snmp.c
M keepalived/include/check_daemon.h
M keepalived/include/check_data.h
M keepalived/include/check_http.h
M keepalived/include/check_parser.h
M keepalived/include/check_snmp.h
M keepalived/include/global_data.h
M keepalived/include/global_parser.h
M keepalived/include/vrrp.h
M keepalived/include/vrrp_arp.h
M keepalived/include/vrrp_daemon.h
M keepalived/include/vrrp_if.h
M keepalived/include/vrrp_index.h
M keepalived/include/vrrp_ipaddress.h
M keepalived/include/vrrp_iproute.h
M keepalived/include/vrrp_iprule.h
M keepalived/include/vrrp_ipsecah.h
M keepalived/include/vrrp_ipset.h
M keepalived/include/vrrp_iptables.h
M keepalived/include/vrrp_iptables_calls.h
M keepalived/include/vrrp_ndisc.h
M keepalived/include/vrrp_netlink.h
M keepalived/include/vrrp_parser.h
M keepalived/include/vrrp_scheduler.h
M keepalived/include/vrrp_snmp.h
M keepalived/include/vrrp_sync.h
M keepalived/include/vrrp_track.h
M keepalived/include/vrrp_vmac.h
M keepalived/libipvs-2.6/ip_vs.h
M keepalived/libipvs-2.6/libipvs.c
M keepalived/vrrp/Makefile.in
M keepalived/vrrp/vrrp.c
M keepalived/vrrp/vrrp_daemon.c
M keepalived/vrrp/vrrp_if.c
M keepalived/vrrp/vrrp_index.c
M keepalived/vrrp/vrrp_ipaddress.c
M keepalived/vrrp/vrrp_iproute.c
M keepalived/vrrp/vrrp_iprule.c
M keepalived/vrrp/vrrp_ipset.c
M keepalived/vrrp/vrrp_iptables.c
M keepalived/vrrp/vrrp_iptables_calls.c
M keepalived/vrrp/vrrp_netlink.c
M keepalived/vrrp/vrrp_notify.c
M keepalived/vrrp/vrrp_parser.c
M keepalived/vrrp/vrrp_print.c
M keepalived/vrrp/vrrp_scheduler.c
M keepalived/vrrp/vrrp_snmp.c
M keepalived/vrrp/vrrp_sync.c
M keepalived/vrrp/vrrp_track.c
M keepalived/vrrp/vrrp_vmac.c
M lib/Makefile.in
M lib/config.h.in
M lib/list.c
M lib/list.h
M lib/logger.c
M lib/logger.h
M lib/memory.h
M lib/parser.c
M lib/parser.h
M lib/scheduler.c
M lib/signals.c
M lib/signals.h
M lib/timer.c
M lib/timer.h
M lib/utils.c
M lib/vector.c
M lib/vector.h
Log Message:
-----------
Merge pull request #265 from pqarmitage/snmpv3
A variety of fixes, and add snmpv3 read-only and notify/trap support
Compare: https://github.com/acassen/keepalived/compare/7f53e710786b...d7d6527556a5
------------------------------------------------------------------------------
_______________________________________________
Keepalived-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/keepalived-devel