From 47d37a80be0931ad72e67db6ba915221afdfeb4f Mon Sep 17 00:00:00 2001 From: rwatson Date: Fri, 11 May 2007 10:20:51 +0000 Subject: Reduce network stack oddness: implement .pru_sockaddr and .pru_peeraddr protocol entry points using functions named proto_getsockaddr and proto_getpeeraddr rather than proto_setsockaddr and proto_setpeeraddr. While it's true that sockaddrs are allocated and set, the net effect is to retrieve (get) the socket address or peer address from a socket, not set it, so align names to that intent. --- sys/netipx/ipx_usrreq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/netipx/ipx_usrreq.c') diff --git a/sys/netipx/ipx_usrreq.c b/sys/netipx/ipx_usrreq.c index 2ee7e94..ad60f4b 100644 --- a/sys/netipx/ipx_usrreq.c +++ b/sys/netipx/ipx_usrreq.c @@ -586,7 +586,7 @@ ipx_peeraddr(so, nam) struct ipxpcb *ipxp = sotoipxpcb(so); KASSERT(ipxp != NULL, ("ipx_peeraddr: ipxp == NULL")); - ipx_setpeeraddr(ipxp, nam); + ipx_getpeeraddr(ipxp, nam); return (0); } @@ -671,7 +671,7 @@ ipx_sockaddr(so, nam) struct ipxpcb *ipxp = sotoipxpcb(so); KASSERT(ipxp != NULL, ("ipx_sockaddr: ipxp == NULL")); - ipx_setsockaddr(ipxp, nam); + ipx_getsockaddr(ipxp, nam); return (0); } -- cgit v1.1