| 420 | } |
| 421 | |
| 422 | void |
| 423 | mac_netinet_firewall_send(struct mbuf *m) |
| 424 | { |
| 425 | struct label *label; |
| 426 | |
| 427 | M_ASSERTPKTHDR(m); |
| 428 | |
| 429 | if (mac_policy_count == 0) |
| 430 | return; |
| 431 | |
| 432 | label = mac_mbuf_to_label(m); |
| 433 | |
| 434 | MAC_POLICY_PERFORM_NOSLEEP(netinet_firewall_send, m, label); |
| 435 | } |
| 436 | |
| 437 | /* |
| 438 | * These functions really should be referencing the syncache structure |
no test coverage detected