| 1427 | #define UNREG_ADDR_CGN_UPPER 0x647fffff |
| 1428 | |
| 1429 | int |
| 1430 | LibAliasOut(struct libalias *la, void *ptr, int maxpacketsize) |
| 1431 | { |
| 1432 | int res; |
| 1433 | |
| 1434 | LIBALIAS_LOCK(la); |
| 1435 | res = LibAliasOutLocked(la, (struct ip *)ptr, maxpacketsize, 1); |
| 1436 | LIBALIAS_UNLOCK(la); |
| 1437 | return (res); |
| 1438 | } |
| 1439 | |
| 1440 | int |
| 1441 | LibAliasOutTry(struct libalias *la, void *ptr, int maxpacketsize, int create) |
no test coverage detected