| 280 | } |
| 281 | |
| 282 | void |
| 283 | mac_netinet_icmp_reply(struct mbuf *mrecv, struct mbuf *msend) |
| 284 | { |
| 285 | struct label *mrecvlabel, *msendlabel; |
| 286 | |
| 287 | if (mac_policy_count == 0) |
| 288 | return; |
| 289 | |
| 290 | mrecvlabel = mac_mbuf_to_label(mrecv); |
| 291 | msendlabel = mac_mbuf_to_label(msend); |
| 292 | |
| 293 | MAC_POLICY_PERFORM_NOSLEEP(netinet_icmp_reply, mrecv, mrecvlabel, |
| 294 | msend, msendlabel); |
| 295 | } |
| 296 | |
| 297 | void |
| 298 | mac_netinet_icmp_replyinplace(struct mbuf *m) |
no test coverage detected