summaryrefslogtreecommitdiff
path: root/sys/netinet
AgeCommit message (Expand)Author
2000-07-24Drop packet, increment udps_badlen if the udp header length fieldsommerfeld
2000-07-24Improve robustness of icmp_error():sommerfeld
2000-07-23add an DIAGNOSTIC case for MCLBYTES assumptionitojun
2000-07-13remove m_pulldown statistics code. it is highly experimental and belongitojun
2000-07-10implement net.inet.icmp.errppslimit.itojun
2000-07-09be more cautious about tcp option length field. drop bogus ones earlier.itojun
2000-07-07sync with kame.itojun
2000-07-06remove unnecessary #include <netkey/key_debug.h>. from kame.itojun
2000-07-06- do not use bitfield for router renumbering header.itojun
2000-07-06Some slight cleanup.thorpej
2000-07-05Fix an omission in the gre cloning changes.thorpej
2000-07-05Fix some zero-vs-NULL confusion.thorpej
2000-07-05Make that note that we really should be checking the viftablethorpej
2000-07-05RFCs 1853, 2003, 2401 -- copy the DF bit.thorpej
2000-07-05Use LIST_HEAD_INITIALIZER(), for correctness sake.thorpej
2000-07-05added a linted comment about non-portable bitfields. Unfortunately it cannotchristos
2000-07-02typo in previousitojun
2000-07-02do not touch struct ip6stat on non-INET6 compilation.itojun
2000-07-02repair kernel faithd(8) support. there were two mistakes:itojun
2000-07-01Don't rate-limit ICMP errors from packets we send to ourselves.sommerfeld
2000-06-30Pass the correct destination address for the route-to-gateway case.thorpej
2000-06-30remove old mbuf assumption (ip header and tcp header are on the same mbuf).itojun
2000-06-28<vm/vm.h> -> <uvm/uvm_extern.h>mrg
2000-06-28remove include of <vm/vm.h>mrg
2000-06-26XNS5.2: define sa_family_t and use it where specified by the standard.kleink
2000-06-26remove/move more mach vm header files:mrg
2000-06-16Don't copy M_EXT mbufs unless in "dhcp" mode. Do a mtod after the pullupmatt
2000-06-12better conformance to draft-ietf-ipngwg-icmp-name-lookups-05.itojun
2000-06-12Remove a duplicated check for the NetBSD callout (I think it is a mistakeveego
2000-06-12Ups, forgot to resolve one place.veego
2000-06-12Resolve conflicts.veego
2000-06-10add icmpreturndatabytes kernel variable (default 8) which specifies thedarrenr
2000-06-05pass struct proc * down to udp6_output and in6_pcbbind.itojun
2000-05-23Resolve conflicts.veego
2000-05-22disallow negative numbers for ratelimit interval (tcp, icmp, icmp6).itojun
2000-05-21Add a missing ; at the end of a line.veego
2000-05-21Resolve conflicts.veego
2000-05-20Install "show arptab" (db_show_arptab) in the ddb command tree.jhawk
2000-05-11Resolve conflicts and fix a compile error in ip_ftp_pxy.c.veego
2000-05-10add missing boundary checks to ip options processing.itojun
2000-05-10correct more out-of-bounds memory access, if cnt == 1 and optlen > 1.itojun
2000-05-10correct out-of-bound access when hlen == 1 and opt > 1.itojun
2000-05-06Handle large offsets with very small options correctly.sommerfeld
2000-05-06GC in_interfaces.mycroft
2000-05-05remove superfluous test (snd_una is always > iss since th_ack must > issmatt
2000-05-05From PR #3733: Only disarm timer if SYN contained the ACK bit since ifmatt
2000-05-03Resolve conflicts.veego
2000-05-02One more __attribute__((__packed__)) to dissuade egcs from makingsommerfeld
2000-04-26sync with more recent kame. defer inclusion of net/if_gif.h.itojun
2000-04-20IN_MULTICAST() takes in_addr.s_addr as argument, not pointer to it.enami