gitextract_5o0vch3v/ ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── SECURITY.md │ └── workflows/ │ ├── build.yml │ ├── coverity.yml │ └── release.yml ├── .gitignore ├── COPYING ├── ChangeLog.md ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── doc/ │ ├── AUTHORS │ └── TODO.md ├── lib/ │ ├── malloc.c │ ├── strlcat.c │ ├── strlcpy.c │ ├── tempfile.c │ └── utimensat.c ├── m4/ │ ├── misc.m4 │ └── mroute.m4 ├── man/ │ ├── Makefile.am │ ├── smcroute.conf.5 │ ├── smcroutectl.8 │ └── smcrouted.8 ├── smcroute ├── smcroute.conf ├── smcroute.default ├── smcroute.init ├── smcroute.service.in ├── src/ │ ├── Makefile.am │ ├── cap.c │ ├── cap.h │ ├── conf.c │ ├── conf.h │ ├── iface.c │ ├── iface.h │ ├── inet.c │ ├── inet.h │ ├── ip_mroute.h │ ├── ipc.c │ ├── ipc.h │ ├── kern.c │ ├── kern.h │ ├── log.c │ ├── log.h │ ├── mcgroup.c │ ├── mcgroup.h │ ├── mrdisc.c │ ├── mrdisc.h │ ├── mroute.c │ ├── mroute.h │ ├── msg.c │ ├── msg.h │ ├── notify.c │ ├── notify.h │ ├── pidfile.c │ ├── queue.h │ ├── script.c │ ├── script.h │ ├── smcroutectl.c │ ├── smcrouted.c │ ├── socket.c │ ├── socket.h │ ├── systemd.c │ ├── timer.c │ ├── timer.h │ └── util.h └── test/ ├── .gitignore ├── Makefile.am ├── README.md ├── adv.sh ├── basic.sh ├── batch.sh ├── bridge.sh ├── dyn.sh ├── expire.sh ├── gre.sh ├── include.sh ├── ipv6.sh ├── isolated.sh ├── join.sh ├── joinlen.sh ├── lib.sh ├── lost.sh ├── mem.sh ├── mrcache.sh ├── mrdisc.sh ├── multi.sh ├── poison.sh ├── reload.sh ├── reload6.sh ├── vlan.sh └── vrfy.sh