MCPcopy Create free account
hub / github.com/F-Stack/f-stack / in_lltable_delete_entry

Function in_lltable_delete_entry

freebsd/netinet/in.c:1503–1513  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1501}
1502
1503static void
1504in_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
1515static struct llentry *
1516in_lltable_alloc(struct lltable *llt, u_int flags, const struct sockaddr *l3addr)

Callers

nothing calls this directly

Calls 2

llentry_freeFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected