CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2022/09/13 03:05:47
Modified files:
sys/kern : uipc_usrreq.c
sys/net : rtsock.c
sys/netinet : tcp_usrreq.c tcp_var.h
sys/sys : protosw.h unpcb.h
Log message:
Change pru_rcvd() return type to the type of void. We have no interest
on pru_rcvd() return value.
Drop "pru_rcvd != NULL" check within pru_rcvd() wrapper. We only call it
if the socket's protocol have PR_WANTRCVD flag set. Such sockets are
route domain, tcp(4) and unix(4) sockets.
ok guenther@ bluhm@