summaryrefslogtreecommitdiff
path: root/sys/netinet
AgeCommit message (Expand)Author
2018-04-13Improve the check, we want to have len >= udphdr all the time, and notmaxv
2018-04-13Remove useless comment and style.maxv
2018-04-13Reduce the diff between similar blocks.maxv
2018-04-13Reorder a few instructions to clarify. Replace two bcopy by memcpy.maxv
2018-04-12Make 'opts' local to rip_sbappendaddr().maxv
2018-04-12Synchronize the code between raw_ip6.c<->icmp6.c<->raw_ip.c, so that it ismaxv
2018-04-12Remove misleading comment; we're just checking the SP, not verifying themaxv
2018-04-11Remove whitespaces/tabs, and one non-ASCII character.maxv
2018-04-11Don't pass IP_ALLOWBROADCAST in ipsec4_input. The flag lands inmaxv
2018-04-11Add comment about IPsec.maxv
2018-04-11Small changes in ip_dooptions: replace bcopy by memcpy, the areas can'tmaxv
2018-04-11Add 'static', like the prototype.maxv
2018-04-11Add XXX.maxv
2018-04-11Add XXX.maxv
2018-04-11Add XXX.maxv
2018-04-10Remove unused mbuf argument from arpcreate() and arplookup().maxv
2018-04-10Replace comment by KASSERT.maxv
2018-04-08Protect ip_dad_count with if NARP > 0 to fix compilationchristos
2018-04-08Remove the ipre_mlast field and the TRAVERSE macro.maxv
2018-04-08Remove unused field, and sync comment with reality.maxv
2018-04-07Remove dead code.maxv
2018-04-06Make GARP work again when DAD is disabledozaki-r
2018-04-06Revert the previous two commits as per roy@'s requestozaki-r
2018-04-06Don't set IN_IFF_* flags to ia4_flags if DAD is disabledozaki-r
2018-04-06Simplify; clear then set flags to ia4_flags (NFCI)ozaki-r
2018-04-03Remove ipsec_copy_policy and ipsec_copy_pcbpolicy. No functional change,maxv
2018-04-03Remove unused fields and outdated comment.maxv
2018-04-03bcopy -> memcpy, it's obvious the areas don't overlap.maxv
2018-04-01Change the check to be <= instead of <. This fixes one occurrence of anmaxv
2018-04-01Reorder and style, for clarity.maxv
2018-03-30correct typo: and and -> and (comments only)maya
2018-03-30Remove dead code. It was introduced in rev1 (25 years ago), and ismaxv
2018-03-30Style, use NULL for pointers, use KASSERT, and don't inline huge functions,maxv
2018-03-30Fix the log. mtod never returns NULL, so 'ip' is always non-NULL, and themaxv
2018-03-30Use consttime_memequal instead of memcmp, to prevent side channels. Thismaxv
2018-03-29tcp_urp_drop: fix a bug introduced in 1.390 rev (hi maxv@).rmind
2018-03-29Remove TCPREASS_DEBUG. It was introduced 20 years ago when the reassemblermaxv
2018-03-29Reorder/Fix comments to clarify.maxv
2018-03-29Remove two more 'else' branches.maxv
2018-03-29Fix memory leak, we may reallocate 'tcp_saveti' after 'findpcb'. It's notmaxv
2018-03-29Remove 'else', makes it clearer that we leave.maxv
2018-03-29Clarify with KASSERT.maxv
2018-03-29Simplify the computation:maxv
2018-03-29Misc changes; no real functional change.maxv
2018-03-29Remove #ifdef INET. Same as tcp_input.c. Makes the code easier tomaxv
2018-03-28Several changes in syn_cache_respond:maxv
2018-03-28Remove unused variable.maxv
2018-03-28Remove two unused args from syn_cache_get().maxv
2018-03-28Dedup: introduce tcp_urp_drop() and use it.maxv
2018-03-28Minor changes: style, improve comments (and put them at the correct place),maxv