Lines Matching refs:lastport
1641 uint16_t *__single lastport; in in6_pcbsetport() local
1687 lastport = &pcbinfo->ipi_lasthi; in in6_pcbsetport()
1700 lastport = &pcbinfo->ipi_lastlow; in in6_pcbsetport()
1704 lastport = &pcbinfo->ipi_lastport; in in6_pcbsetport()
1719 *lastport = first - (rand_port % (first - last)); in in6_pcbsetport()
1727 *lastport = first + (rand_port % (first - last)); in in6_pcbsetport()
1753 --*lastport; in in6_pcbsetport()
1754 if (*lastport > first || *lastport < last) { in in6_pcbsetport()
1755 *lastport = first; in in6_pcbsetport()
1758 ++*lastport; in in6_pcbsetport()
1759 if (*lastport < first || *lastport > last) { in in6_pcbsetport()
1760 *lastport = first; in in6_pcbsetport()
1763 lport = htons(*lastport); in in6_pcbsetport()