|
| SYSCTL_NODE (_net_inet_ip, IPPROTO_IP, portrange, CTLFLAG_RW, 0, "IP Ports") |
|
| SYSCTL_PROC (_net_inet_ip_portrange, OID_AUTO, lowfirst, CTLTYPE_INT|CTLFLAG_RW, &ipport_lowfirstauto, 0, &sysctl_net_ipport_check, "I", "") |
|
| SYSCTL_PROC (_net_inet_ip_portrange, OID_AUTO, lowlast, CTLTYPE_INT|CTLFLAG_RW, &ipport_lowlastauto, 0, &sysctl_net_ipport_check, "I", "") |
|
| SYSCTL_PROC (_net_inet_ip_portrange, OID_AUTO, first, CTLTYPE_INT|CTLFLAG_RW, &ipport_firstauto, 0, &sysctl_net_ipport_check, "I", "") |
|
| SYSCTL_PROC (_net_inet_ip_portrange, OID_AUTO, last, CTLTYPE_INT|CTLFLAG_RW, &ipport_lastauto, 0, &sysctl_net_ipport_check, "I", "") |
|
| SYSCTL_PROC (_net_inet_ip_portrange, OID_AUTO, hifirst, CTLTYPE_INT|CTLFLAG_RW, &ipport_hifirstauto, 0, &sysctl_net_ipport_check, "I", "") |
|
| SYSCTL_PROC (_net_inet_ip_portrange, OID_AUTO, hilast, CTLTYPE_INT|CTLFLAG_RW, &ipport_hilastauto, 0, &sysctl_net_ipport_check, "I", "") |
|
int | in_pcballoc (struct socket *so, struct inpcbinfo *pcbinfo) |
|
int | in_pcbbind (struct inpcb *inp, struct mbuf *nam) |
|
int | in_pcbladdr (struct inpcb *inp, struct mbuf *nam, struct sockaddr_in **plocal_sin) |
|
int | in_pcbconnect (struct inpcb *inp, struct mbuf *nam) |
|
void | in_pcbdisconnect (struct inpcb *inp) |
|
void | in_pcbdetach (struct inpcb *inp) |
|
void | in_setsockaddr (struct inpcb *inp, struct mbuf *nam) |
|
void | in_setpeeraddr (struct inpcb *inp, struct mbuf *nam) |
|
void | in_pcbnotify (struct inpcbhead *head, struct sockaddr *dst, u_int fport_arg, struct in_addr laddr, u_int lport_arg, int cmd, void(*notify)(struct inpcb *, int)) |
|
void | in_losing (struct inpcb *inp) |
|
struct inpcb * | in_pcblookup (struct inpcbinfo *pcbinfo, struct in_addr faddr, u_int fport_arg, struct in_addr laddr, u_int lport_arg, int wild_okay) |
|
struct inpcb * | in_pcblookuphash (struct inpcbinfo *pcbinfo, struct in_addr faddr, u_int fport_arg, struct in_addr laddr, u_int lport_arg, int wildcard) |
|
void | in_pcbrehash (struct inpcb *inp) |
|