| 1046 | } |
| 1047 | |
| 1048 | static void |
| 1049 | mls_ifnet_relabel(struct ucred *cred, struct ifnet *ifp, |
| 1050 | struct label *ifplabel, struct label *newlabel) |
| 1051 | { |
| 1052 | struct mac_mls *source, *dest; |
| 1053 | |
| 1054 | source = SLOT(newlabel); |
| 1055 | dest = SLOT(ifplabel); |
| 1056 | |
| 1057 | mls_copy(source, dest); |
| 1058 | } |
| 1059 | |
| 1060 | static int |
| 1061 | mls_inpcb_check_deliver(struct inpcb *inp, struct label *inplabel, |
nothing calls this directly
no test coverage detected