| 1103 | } |
| 1104 | |
| 1105 | static void |
| 1106 | mls_inpcb_create_mbuf(struct inpcb *inp, struct label *inplabel, |
| 1107 | struct mbuf *m, struct label *mlabel) |
| 1108 | { |
| 1109 | struct mac_mls *source, *dest; |
| 1110 | |
| 1111 | source = SLOT(inplabel); |
| 1112 | dest = SLOT(mlabel); |
| 1113 | |
| 1114 | mls_copy_effective(source, dest); |
| 1115 | } |
| 1116 | |
| 1117 | static void |
| 1118 | mls_inpcb_sosetlabel(struct socket *so, struct label *solabel, |
nothing calls this directly
no test coverage detected