Reduce the number of network protocols filtered from the parser.

https://bugs.launchpad.net/bugs/732837

Bug: https://launchpad.net/bugs/732837
This commit is contained in:
Steve Beattie 2011-03-17 10:50:53 -07:00
parent f3b847c4b0
commit 19a2d6d169

View file

@ -196,7 +196,8 @@ parser_version.h: Makefile
# These are the families that it doesn't make sense for apparmor to mediate.
# We use PF_ here since that is what is required in bits/socket.h, but we will
# rewrite these as AF_.
FILTER_FAMILIES=PF_RXRPC PF_MAX PF_UNSPEC PF_UNIX PF_LOCAL PF_NETLINK PF_LLC PF_IUCV PF_TIPC PF_CAN PF_ISDN PF_PHONET
FILTER_FAMILIES=PF_MAX PF_UNSPEC PF_UNIX PF_LOCAL PF_NETLINK
__FILTER=$(shell echo $(strip $(FILTER_FAMILIES)) | sed -e 's/ /\\\|/g')