CVSROOT: /cvs Module name: src Changes by: patr...@cvs.openbsd.org 2018/03/31 11:09:56
Modified files: sys/lib/libsa : netudp.c Log message: Stop converting UDP and IP header values from network endianness to host endianness for convenience reasons. Especially in code pathes like TFTP where the source port is read from the received UDP packet and used as destination port in a new UDP packet this can be very harmful. Luckily this issue has had no effect on our architectures since they never use any of the code paths that could be harmful. ok visa@