Up to [cvs.NetBSD.org] / src / sys / netinet
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: ktrace-lwp-base
Revision 1.144 / (download) - annotate - [select for diffs], Fri Dec 9 15:36:34 2005 UTC (7 years, 5 months ago) by manu
Branch: MAIN
CVS Tags: ktrace-lwp-base
Changes since 1.143: +34 -13
lines
Diff to previous 1.143 (colored)
Fix a bug in ESP over UDP: because udp4_espinudp() called m_pullup, it could modify the struct mbuf and calling functions (udp_input() and udp4_realinput()) would have used a garbled local copy of the pointer. The fix is not perfect. udp4_espinudp() should use m_pulldown()...