diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-11-30 09:45:36 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-05-17 02:27:08 +0200 |
commit | 41ee544212ac5b9af8ccc347161d2417fc1ae27e (patch) | |
tree | f29e70b841d46969698fa41f39fdcc3906216079 /vrrpd/subdir.am | |
parent | vrrpd: initial commit (diff) | |
download | frr-41ee544212ac5b9af8ccc347161d2417fc1ae27e.tar.xz frr-41ee544212ac5b9af8ccc347161d2417fc1ae27e.zip |
vrrpd: implement gratuitous ARP
Implement gratuitous ARP functionality. Ethernet only.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'vrrpd/subdir.am')
-rw-r--r-- | vrrpd/subdir.am | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/vrrpd/subdir.am b/vrrpd/subdir.am index 40dee9c14..5c040932e 100644 --- a/vrrpd/subdir.am +++ b/vrrpd/subdir.am @@ -11,18 +11,20 @@ man8 += $(MANBUILD)/vrrpd.8 endif vrrpd_libvrrp_a_SOURCES = \ + vrrpd/vrrp.c \ + vrrpd/vrrp_arp.c \ vrrpd/vrrp_memory.c \ - vrrpd/vrrp_zebra.c \ - vrrpd/vrrp_vty.c \ vrrpd/vrrp_packet.c \ - vrrpd/vrrp.c \ + vrrpd/vrrp_vty.c \ + vrrpd/vrrp_zebra.c \ # end noinst_HEADERS += \ + vrrpd/vrrp.h \ + vrrpd/vrrp_arp.h \ vrrpd/vrrp_memory.h \ - vrrpd/vrrp_zebra.h \ vrrpd/vrrp_vty.h \ - vrrpd/vrrp.h \ + vrrpd/vrrp_zebra.h \ # end vrrpd/vrrp_vty_clippy.c: $(CLIPPY_DEPS) |