Changeset View
Changeset View
Standalone View
Standalone View
sys/sys/socketvar.h
| Show First 20 Lines • Show All 549 Lines • ▼ Show 20 Lines | |||||
| int sousrsend(struct socket *so, struct sockaddr *addr, struct uio *uio, | int sousrsend(struct socket *so, struct sockaddr *addr, struct uio *uio, | ||||
| struct mbuf *control, int flags, struct proc *); | struct mbuf *control, int flags, struct proc *); | ||||
| int sosend_dgram(struct socket *so, struct sockaddr *addr, | int sosend_dgram(struct socket *so, struct sockaddr *addr, | ||||
| struct uio *uio, struct mbuf *top, struct mbuf *control, | struct uio *uio, struct mbuf *top, struct mbuf *control, | ||||
| int flags, struct thread *td); | int flags, struct thread *td); | ||||
| int sosend_generic(struct socket *so, struct sockaddr *addr, | int sosend_generic(struct socket *so, struct sockaddr *addr, | ||||
| struct uio *uio, struct mbuf *top, struct mbuf *control, | struct uio *uio, struct mbuf *top, struct mbuf *control, | ||||
| int flags, struct thread *td); | int flags, struct thread *td); | ||||
| int sosetfib(struct socket *so, int fibnum); | |||||
| int soshutdown(struct socket *so, enum shutdown_how); | int soshutdown(struct socket *so, enum shutdown_how); | ||||
| void soupcall_clear(struct socket *, sb_which); | void soupcall_clear(struct socket *, sb_which); | ||||
| void soupcall_set(struct socket *, sb_which, so_upcall_t, void *); | void soupcall_set(struct socket *, sb_which, so_upcall_t, void *); | ||||
| void solisten_upcall_set(struct socket *, so_upcall_t, void *); | void solisten_upcall_set(struct socket *, so_upcall_t, void *); | ||||
| void sorwakeup_locked(struct socket *); | void sorwakeup_locked(struct socket *); | ||||
| void sowwakeup_locked(struct socket *); | void sowwakeup_locked(struct socket *); | ||||
| void sowakeup_aio(struct socket *, sb_which); | void sowakeup_aio(struct socket *, sb_which); | ||||
| void solisten_wakeup(struct socket *); | void solisten_wakeup(struct socket *); | ||||
| ▲ Show 20 Lines • Show All 88 Lines • Show Last 20 Lines | |||||