Home
last modified time | relevance | path

Searched refs:trusted_interfaces (Results 1 – 2 of 2) sorted by relevance

/freebsd-10-stable/sys/security/mac_lomac/
Dmac_lomac.c117 static char trusted_interfaces[128]; variable
118 SYSCTL_STRING(_security_mac_lomac, OID_AUTO, trusted_interfaces, CTLFLAG_RD,
119 trusted_interfaces, 0, "Interfaces considered 'trusted' by MAC/LOMAC");
120 TUNABLE_STR("security.mac.lomac.trusted_interfaces", trusted_interfaces,
121 sizeof(trusted_interfaces));
1180 char tiflist[sizeof(trusted_interfaces)]; in lomac_ifnet_create()
1198 if (trusted_interfaces[0] == '\0' || in lomac_ifnet_create()
1199 !strvalid(trusted_interfaces, sizeof(trusted_interfaces))) in lomac_ifnet_create()
1203 for (p = trusted_interfaces, q = tiflist; *p != '\0'; p++, q++) in lomac_ifnet_create()
/freebsd-10-stable/sys/security/mac_biba/
Dmac_biba.c116 static char trusted_interfaces[128]; variable
117 SYSCTL_STRING(_security_mac_biba, OID_AUTO, trusted_interfaces, CTLFLAG_RD,
118 trusted_interfaces, 0, "Interfaces considered 'trusted' by MAC/Biba");
119 TUNABLE_STR("security.mac.biba.trusted_interfaces", trusted_interfaces,
120 sizeof(trusted_interfaces));
1067 char tiflist[sizeof(trusted_interfaces)]; in biba_ifnet_create()
1085 if (trusted_interfaces[0] == '\0' || in biba_ifnet_create()
1086 !strvalid(trusted_interfaces, sizeof(trusted_interfaces))) in biba_ifnet_create()
1090 for (p = trusted_interfaces, q = tiflist; *p != '\0'; p++, q++) in biba_ifnet_create()