* Return pointer to ifnet structure, corresponding to the zone id of * link-local scope. */
| 492 | * link-local scope. |
| 493 | */ |
| 494 | struct ifnet* |
| 495 | in6_getlinkifnet(uint32_t zoneid) |
| 496 | { |
| 497 | |
| 498 | return (ifnet_byindex((u_short)zoneid)); |
| 499 | } |
| 500 | |
| 501 | /* |
| 502 | * Return zone id for the specified scope. |
no test coverage detected