| 1380 | } |
| 1381 | |
| 1382 | struct alias_link * |
| 1383 | FindFragmentIn2(struct libalias *la, struct in_addr dst_addr, /* Doesn't add a link if |
| 1384 | * one */ |
| 1385 | struct in_addr alias_addr, /* is not found. */ |
| 1386 | u_short ip_id) |
| 1387 | { |
| 1388 | |
| 1389 | LIBALIAS_LOCK_ASSERT(la); |
| 1390 | return FindLinkIn(la, dst_addr, alias_addr, |
| 1391 | NO_DEST_PORT, ip_id, |
| 1392 | LINK_FRAGMENT_ID, 0); |
| 1393 | } |
| 1394 | |
| 1395 | struct alias_link * |
| 1396 | AddFragmentPtrLink(struct libalias *la, struct in_addr dst_addr, |
no test coverage detected