| 1271 | } |
| 1272 | |
| 1273 | static void |
| 1274 | mls_netinet_firewall_send(struct mbuf *m, struct label *mlabel) |
| 1275 | { |
| 1276 | struct mac_mls *dest; |
| 1277 | |
| 1278 | dest = SLOT(mlabel); |
| 1279 | |
| 1280 | /* XXX: where is the label for the firewall really coming from? */ |
| 1281 | mls_set_effective(dest, MAC_MLS_TYPE_EQUAL, 0, NULL); |
| 1282 | } |
| 1283 | |
| 1284 | static void |
| 1285 | mls_netinet_fragment(struct mbuf *m, struct label *mlabel, struct mbuf *frag, |
nothing calls this directly
no test coverage detected