summaryrefslogtreecommitdiff
path: root/sys/netinet
AgeCommit message (Collapse)Author
1999-02-05indentTheo de Raadt
1999-02-05Clear mfchashtbl after deallocation (mycroft@netbsd)Angelos D. Keromytis
1999-02-04indentTheo de Raadt
1999-02-04report on no udp checksumTheo de Raadt
1999-02-04use u_int32_t and u_int64_t for stats variables, instead of quad/longTheo de Raadt
1999-02-01remove the correct KFREEDavid Leonard
1999-01-29remove multiple freeDavid Leonard
1999-01-27fix NEWRENO behaviour, the newreo code assumed that the send socket buffer hasNiels Provos
already been cleared of the acked data, though it was called before any sbdrop() call and always called tcp_output() with 0 index in the send socket buffer and thus causing data corruption. so do not set snd_una to th_ack.
1999-01-27reordered FIN segments caused early termination, bug introduced by ipv6 ↵Niklas Hallqvist
integration
1999-01-15IN_MULTICAST takes network order addressesNiklas Hallqvist
1999-01-11remove panic() calls, consistent error reportingTheo de Raadt
1999-01-11Use bzero instead of memset in the kernelNiklas Hallqvist
1999-01-11Make TCP_SACK compile with new netinetNiklas Hallqvist
1999-01-11panic prints a newline for you, don't do it in the panic stringTodd C. Miller
1999-01-11netinet merge of NRL stuff. some indent and shrinkage needed; NRL/cmetzTheo de Raadt
1999-01-11Remove duplicate code.Angelos D. Keromytis
1999-01-10merge INPROTO_* tablesTheo de Raadt
1999-01-08dont call ip_randomid() in htons().Niels Provos
1999-01-08do not use random bits when not necessary, remove 8-byte block dependenceTheo de Raadt
1999-01-08IPV6 pieces; NRLTheo de Raadt
1999-01-08more IPV6 merge; cmetzTheo de Raadt
1999-01-08remove NRL debugging goop; cmetzTheo de Raadt
1999-01-08rip_input() should be called with a 0 terminator; cmetzTheo de Raadt
1999-01-08INET6 hooks; NRL/cmetzTheo de Raadt
1999-01-07INET6 supportTheo de Raadt
1999-01-07add ipv6 transition related ICMP errorsTheo de Raadt
1999-01-07indentTheo de Raadt
1999-01-07ipv6 ethertypeTheo de Raadt
1999-01-07update for ipv6Theo de Raadt
1999-01-07in_pcblookup() now takes ptr to both ip address argumentsTheo de Raadt
1999-01-07indentTheo de Raadt
1999-01-07rename baddynamic() to in_baddynamic(), and export itTheo de Raadt
1999-01-03use int8_t, not char in c++ case for consistency and fix indentationTodd C. Miller
1999-01-01mirror OSF1 solution for ip_opts[] within struct called ip_opts; dm@, pr#681Theo de Raadt
1998-12-31one last fix for byte order. now all architectures return the same correct ↵Theo de Raadt
icmp packets
1998-12-31look at that, correct nested ip checksums...Theo de Raadt
1998-12-31XXX marker for where nested ip ip_sum should be re-build (but it is not in ↵Theo de Raadt
an mbuf, grr
1998-12-31icmp_error() is now getting packets which are completely in network byte orderTheo de Raadt
1998-12-31mangle uh_sum as before, but recover it for icmp errorsTheo de Raadt
1998-12-28ensure the ip packet embedded inside an icmp packet has correct ip_len,Theo de Raadt
ip_off, ip_id. for udp, also correct uh_sum. ip_sum is still set to 0; (all this debugged using nmap)
1998-12-26make ip_id random but ensure that ids dont repeat for some period.Niels Provos
1998-12-15check for valid ip_hl too; route@infonexus.comTheo de Raadt
1998-11-25typo in commentNiklas Hallqvist
1998-11-25Better error code for too large packetsNiklas Hallqvist
1998-11-25more min vs. ulmin/lmin fixesTodd C. Miller
1998-11-25Must use lmin() not min() when comparing longs. Fixes alphaTodd C. Miller
1998-11-25typo in diagnosticNiklas Hallqvist
1998-11-25Add checks of packets getting to big after transforms.Niklas Hallqvist
Also make sure some more error conditions get told to the caller.
1998-11-25Tell caller of error conditionNiklas Hallqvist
1998-11-24Use our exact size types instead of char/longNiklas Hallqvist