| 4129 | } |
| 4130 | |
| 4131 | int |
| 4132 | if_setdrvflagbits(if_t ifp, int set_flags, int clear_flags) |
| 4133 | { |
| 4134 | ((struct ifnet *)ifp)->if_drv_flags |= set_flags; |
| 4135 | ((struct ifnet *)ifp)->if_drv_flags &= ~clear_flags; |
| 4136 | |
| 4137 | return (0); |
| 4138 | } |
| 4139 | |
| 4140 | int |
| 4141 | if_getdrvflags(if_t ifp) |
no outgoing calls
no test coverage detected