| 1081 | } |
| 1082 | |
| 1083 | static void |
| 1084 | carp_delroute(struct carp_softc *sc) |
| 1085 | { |
| 1086 | struct ifaddr *ifa; |
| 1087 | |
| 1088 | CARP_FOREACH_IFA(sc, ifa) |
| 1089 | carp_ifa_delroute(ifa); |
| 1090 | } |
| 1091 | |
| 1092 | static void |
| 1093 | carp_ifa_delroute(struct ifaddr *ifa) |
no test coverage detected