| 1501 | } |
| 1502 | |
| 1503 | static void |
| 1504 | in_lltable_delete_entry(struct lltable *llt, struct llentry *lle) |
| 1505 | { |
| 1506 | |
| 1507 | lle->la_flags |= LLE_DELETED; |
| 1508 | EVENTHANDLER_INVOKE(lle_event, lle, LLENTRY_DELETED); |
| 1509 | #ifdef DIAGNOSTIC |
| 1510 | log(LOG_INFO, "ifaddr cache = %p is deleted\n", lle); |
| 1511 | #endif |
| 1512 | llentry_free(lle); |
| 1513 | } |
| 1514 | |
| 1515 | static struct llentry * |
| 1516 | in_lltable_alloc(struct lltable *llt, u_int flags, const struct sockaddr *l3addr) |
nothing calls this directly
no test coverage detected