diff options
author | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2021-03-21 00:05:58 +0000 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-04-03 18:40:54 -0700 |
commit | f1d2136024f1614f55cea76aecb67ea974379e49 (patch) | |
tree | e9c8562093aec7282322356ed54fe1963e9cd9da /net/netifyd/Makefile | |
parent | 6c9627b45d9fcf3acac438466943015e1f0f837f (diff) |
netifyd: support filter parameter
netifyd supports a '-F' filter option in 'bpf' notation to filter
packets from its consideration.
Add support for a uci 'filter' option. eg. filter to exclude SSDP
multicasts from a particularly noisy device:
option filter 'not (udp and dst 239.255.255.250 and dst port 1900 and src 192.168.1.5)'
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Diffstat (limited to 'net/netifyd/Makefile')
-rw-r--r-- | net/netifyd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netifyd/Makefile b/net/netifyd/Makefile index 025bf26fc..e6307ca62 100644 --- a/net/netifyd/Makefile +++ b/net/netifyd/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=netifyd -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_MAINTAINER:=Darryl Sokoloski <darryl@egloo.ca> PKG_LICENSE:=GPL-3.0-or-later |