nis problems
Jeffrey Hsu
hsu at freebsd.org
Sun Apr 4 15:03:29 PDT 2004
I think I understand the problem now. The application is expecting the
implicit bind on output to be exactly the same as an explicit bind.
Can you see if this fixes it? Thanks for tracking this down, Matt.
Jeffrey
Index: udp_usrreq.c
===================================================================
RCS file: /j/dragonfly/dcvs/src/sys/netinet/udp_usrreq.c,v
retrieving revision 1.20
diff -u -p -r1.20 udp_usrreq.c
--- udp_usrreq.c 31 Mar 2004 07:21:38 -0000 1.20
+++ udp_usrreq.c 4 Apr 2004 22:01:26 -0000
@@ -730,6 +730,7 @@ udp_output(inp, m, dstaddr, control, td)
error = in_pcbbind(inp, (struct sockaddr *)NULL, td);
if (error)
goto release;
+ in_pcbinswildcardhash(inp);
}
if (dstaddr != NULL) { /* destination address specified */
More information about the Bugs
mailing list