| 1227 | } |
| 1228 | |
| 1229 | static void |
| 1230 | lomac_ifnet_create_mbuf(struct ifnet *ifp, struct label *ifplabel, |
| 1231 | struct mbuf *m, struct label *mlabel) |
| 1232 | { |
| 1233 | struct mac_lomac *source, *dest; |
| 1234 | |
| 1235 | source = SLOT(ifplabel); |
| 1236 | dest = SLOT(mlabel); |
| 1237 | |
| 1238 | lomac_copy_single(source, dest); |
| 1239 | } |
| 1240 | |
| 1241 | static void |
| 1242 | lomac_ifnet_relabel(struct ucred *cred, struct ifnet *ifp, |
nothing calls this directly
no test coverage detected