CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2016/04/29 05:40:27
Modified files: sys/netinet : ip_output.c sys/netinet6 : ip6_output.c Log message: Do not allow to change the routing table of a bound socket. This is not intended and will behave unexpectedly if the address is already used in another domain. It did not work anyway, as the PCB ended in the wrong hash bucket after changing the rtable. Fail with EBUSY if the socket is already bound and rehash the PCB if its rtable changes. input claudio@; OK mpi@