| 1311 | int maxpacketsize); |
| 1312 | |
| 1313 | int |
| 1314 | LibAliasIn(struct libalias *la, void *ptr, int maxpacketsize) |
| 1315 | { |
| 1316 | int res; |
| 1317 | |
| 1318 | LIBALIAS_LOCK(la); |
| 1319 | res = LibAliasInLocked(la, (struct ip *)ptr, maxpacketsize); |
| 1320 | LIBALIAS_UNLOCK(la); |
| 1321 | return (res); |
| 1322 | } |
| 1323 | |
| 1324 | static int |
| 1325 | LibAliasInLocked(struct libalias *la, struct ip *pip, int maxpacketsize) |
no test coverage detected