|
| SYSCTL_INT (_kern, KIPC_MAXSOCKBUF, maxsockbuf, CTLFLAG_RW, &sb_max, 0, "") |
|
| SYSCTL_INT (_kern, OID_AUTO, sockbuf_waste_factor, CTLFLAG_RW, &sb_efficiency, 0, "") |
|
void | soisconnecting (struct socket *so) |
|
void | soisconnected (struct socket *so) |
|
void | soisdisconnecting (struct socket *so) |
|
void | soisdisconnected (struct socket *so) |
|
struct socket * | sodropablereq (struct socket *head) |
|
struct socket * | sonewconn1 (struct socket *head, int connstatus) |
|
void | socantsendmore (struct socket *so) |
|
void | socantrcvmore (struct socket *so) |
|
int | soreserve (struct socket *so, u_long sndcc, u_long rcvcc) |
|
int | sbreserve (struct sockbuf *sb, u_long cc) |
|
void | sbrelease (struct sockbuf *sb) |
|
void | sbappend (struct sockbuf *sb, struct mbuf *m) |
|
void | sbappendrecord (struct sockbuf *sb, struct mbuf *m0) |
|
void | sbinsertoob (struct sockbuf *sb, struct mbuf *m0) |
|
int | sbappendaddr (struct sockbuf *sb, struct sockaddr *asa, struct mbuf *m0, struct mbuf *control) |
|
int | sbappendcontrol (struct sockbuf *sb, struct mbuf *m0, struct mbuf *control) |
|
void | sbcompress (struct sockbuf *sb, struct mbuf *m, struct mbuf *n) |
|
void | sbflush (struct sockbuf *sb) |
|
void | sbdrop (struct sockbuf *sb, int len) |
|
void | sbdroprecord (struct sockbuf *sb) |
|
struct mbuf * | sbcreatecontrol (caddr_t p, int size, int type, int level) |
|
int | pru_accept_notsupp (struct socket *so, struct mbuf *nam) |
|
int | pru_connect2_notsupp (struct socket *so1, struct socket *so2) |
|
int | pru_control_notsupp (struct socket *so, int cmd, caddr_t data, struct ifnet *ifp) |
|
int | pru_listen_notsupp (struct socket *so) |
|
int | pru_rcvd_notsupp (struct socket *so, int flags) |
|
int | pru_rcvoob_notsupp (struct socket *so, struct mbuf *m, int flags) |
|
int | pru_sense_null (struct socket *so, struct stat *sb) |
|