| version 1.111.2.10, 2007/12/07 17:33:17 |
version 1.111.2.11, 2008/01/21 09:46:30 |
| Line 578 sobind(struct socket *so, struct mbuf *n |
|
| Line 578 sobind(struct socket *so, struct mbuf *n |
|
| } |
} |
| |
|
| int |
int |
| solisten(struct socket *so, int backlog) |
solisten(struct socket *so, int backlog, struct lwp *l) |
| { |
{ |
| int s, error; |
int s, error; |
| |
|
| s = splsoftnet(); |
s = splsoftnet(); |
| error = (*so->so_proto->pr_usrreq)(so, PRU_LISTEN, NULL, |
error = (*so->so_proto->pr_usrreq)(so, PRU_LISTEN, NULL, |
| NULL, NULL, NULL); |
NULL, NULL, l); |
| if (error != 0) { |
if (error != 0) { |
| splx(s); |
splx(s); |
| return error; |
return error; |