Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-11-08 | fix macros up so they use the do { } while (/* CONSTCOND */ 0) idiom | David Gwynne | |
ok deraadt@ otto@ | |||
2008-05-24 | Remove {tcp/udp}6_usrreq(); Since the normal ones now | Thordur I. Bjornsson | |
take a proc argument, theres no need for these, since they are just wrappers. OK claudio@ | |||
2008-05-23 | Deal with the situation when TCP nfs mounts timeout and processes | Thordur I. Bjornsson | |
get hung in nfs_reconnect() because they do not have the proper privilages to bind to a socket, by adding a struct proc * argument to sobind() (and the *_usrreq() routines, and finally in{6}_pcbbind) and do the sobind() with proc0 in nfs_connect. OK markus@, blambert@. "go ahead" deraadt@. Fixes an issue reported by bernd@ (Tested by bernd@). Fixes PR5135 too. | |||
2008-05-06 | remove tcp_drain code since it's not longer used; ok henning, feedback thib | Markus Friedl | |
2008-02-20 | remove old unused TCP isn code; ok henning, dhartmei, mcbride | Markus Friedl | |
2008-02-20 | when creating a response, use the correct TCP header instead of | Markus Friedl | |
relying on the mbuf chain layout; with claudio@ and krw@; ok henning@ | |||
2007-12-13 | implement sysctls to report IP, TCP, UDP, and ICMP statistics and | Reyk Floeter | |
change netstat to use them instead of accessing kvm for it. more protocols will be added later. discussed with deraadt@ claudio@ gilles@ ok deraadt@ | |||
2007-06-25 | merge tcp_set_iss() and tcp_set_tsm(); ok mcbride, djm (on earlier version) | Markus Friedl | |
2007-06-15 | Drop the current random timestamps and the current ISN generation | Markus Friedl | |
code and replace both with a RFC1948 based method, so TCP clients now have monotonic ISN/timestamps. The server side uses completely random ISN/timestamps and does time-wait recycling (on port reuse). ok djm@, mcbride@; thanks to lots of testers | |||
2007-02-01 | correct rfc; from Kris Katterjohn | Jason McIntyre | |
2005-12-11 | bitfields must be off an int or such type | Theo de Raadt | |
2005-11-20 | splimp -> splvm. mbuf allocation here. | Brad Smith | |
ok henning@ | |||
2005-11-15 | Only two `h' in threshold. | Miod Vallat | |
2005-08-02 | change the TCP reass queue from LIST to TAILQ; | Markus Friedl | |
ok henning claudio fgsch krw | |||
2005-07-04 | remove TUBA, ok many | Markus Friedl | |
2005-06-30 | implement PMTU checks from | Markus Friedl | |
http://www.gont.com.ar/drafts/icmp-attacks-against-tcp.html i.e. don't act on ICMP-need-frag immediately if adhoc checks on the advertised mtu fail. the mtu update is delayed until a tcp retransmit happens. initial patch by Fernando Gont, tested by many. | |||
2005-05-24 | Ignore ICMP Source Quench messages meant for TCP connections. (Details in | Fernando Gont | |
http://www.gont.com.ar/drafts/icmp-attacks-against-tcp.html) ok markus frantzen | |||
2005-04-05 | add tcp sack stats, similar to freebsd; ok deraadt | Markus Friedl | |
2005-03-09 | from freebsd: | Markus Friedl | |
1. set rcv_laststart/rcv_lastend after checking the tcp window 2. pass rcv_laststart and rcv_lastend on the stack (shrink tcp state) ok henning, djm | |||
2005-03-04 | - check th_ack against snd_una/max; from Raja Mukerji via hugh@ | Markus Friedl | |
- limit pool to tcp_sackhole_limit entries (sysctl-able) - stop sack option processing on pool_get errors - use SEQ_MIN/SEQ_MAX ok henning, hshoexer, deraadt | |||
2005-02-27 | 1. tcp_xmit_timer(): remove extra rtt decrement (t_rtttime is 0-based | Markus Friedl | |
while t_rtt was 1-based), update callers 2. define and use TCP_RTT_BASE_SHIFT instead of the hardcoded 2. 3. add missing shifts when t_srtt/t_rttvar are used. 4. update the comments: t_srtt uses 5 bits of fraction (not 3) and t_rttvar uses 4 bits 5. remove obsolete/unused macros TCP_RTT_SCALE and TCP_RTTVAR_SCALE 6. make sure rttmin is not > TCPTV_REXMTMAX parts from netbsd, ok mcbride, henning | |||
2005-01-10 | Make sure bogus values don't make their way into tcp_xmit_timer() calculations. | Ryan Thomas McBride | |
- Ignore ts_ecr if it is 0, or the resulting rtt is out of range. (use tp->t_rtttime instead) - Initialise tcp_now to 1, to avoid the 500ms window where a valid ts_ecr of 0 could be ignored. - Convert out-of-range rtt values to valid ones in tcp_xmit_timer(). ok frantzen@ markus@ | |||
2004-11-25 | fix for race between invocation for timer and network input | Markus Friedl | |
1) add a reaper for TCP and SYN cache states (cf. netbsd pr 20390) 2) additional check for TCP_TIMER_ISARMED(TCPT_REXMT) in tcp_timer_persist() with mickey@; ok deraadt@ | |||
2004-10-28 | Modulate tcp_now by a random amount on a per-connection basis. | Ryan Thomas McBride | |
ok markus@ frantzen@ | |||
2004-09-16 | don't send partial segments if SS_ISSENDING is set, remember | Markus Friedl | |
TF_LASTIDLE across invocations of tcp_output (from freebsd); ok mcbride | |||
2004-07-15 | tcp_trace() expects short, not int; ok deraadt | Markus Friedl | |
2004-06-08 | factor out md5 code; ok+tests henning@, djm@, hshoexer@ | Markus Friedl | |
2004-04-25 | add TCPCTL_DROP; ok deraadt, cedric, grange, ... | Markus Friedl | |
2004-04-20 | add tcps_rcvacktooold; ok deraadt | Markus Friedl | |
2004-03-02 | limit total number of queued out-of-order packets to NMBCLUSTERS/2; ok mcbride | Markus Friedl | |
2004-02-27 | implement tcp_drain() similar to ip_drain(); ok mcbride@ | Markus Friedl | |
2004-02-27 | API change; counter for upcoming tcp_drain(); ok deraadt | Markus Friedl | |
2004-02-15 | switch to sysctl_int_arr(); ok itojun, henning, miod, deraadt | Markus Friedl | |
2004-01-31 | !sack_disable -> sack_enable; ok deraadt@ | Markus Friedl | |
2004-01-29 | support for RFC3390 (Increasing TCP's Initial Window); ok deraadt, itojun | Markus Friedl | |
2004-01-14 | syncache+ipv6 support for TCP_SIGNATURE; with itojun; ok deraadt | Markus Friedl | |
2004-01-13 | bring back the old TCP_SIGNATURE code from tcp_input.c rev 1.45 | Markus Friedl | |
and make it compile (does not work yet); ok deraadt@ | |||
2004-01-07 | syn_XXX_limit -> synXXXlimit for consistency; ok deraadt | Markus Friedl | |
2004-01-06 | import netbsd's version of David Borman's syncache code | Markus Friedl | |
http://www.kohala.com/start/borman.97jun06.txt; ok deraadt@, henning@ | |||
2003-06-09 | backout following: | Jun-ichiro itojun Hagino | |
>use m_pulldown not m_pullup2. fix some bugs in IPv6 tcp_trace(). PR 3283 fixed (confirmed) | |||
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-05-29 | use m_pulldown not m_pullup2. fix some bugs in IPv6 tcp_trace(). | Jun-ichiro itojun Hagino | |
2003-05-26 | fix tcpcb size to make trpt happy | Jun-ichiro itojun Hagino | |
2003-05-23 | don't #ifdef within struct tcpcb definition, as it is used in userland too. | Jun-ichiro itojun Hagino | |
dhartmei ok | |||
2003-05-12 | Nuke a whole bunch of commons; ok tedu (still more to come *sigh*) | Jason Wright | |
2003-02-12 | Remove commons; inspired by netbsd. | Jason Wright | |
2002-06-09 | whitespace | Jun-ichiro itojun Hagino | |
2002-05-16 | bring in ECN support from KAME. | Kenjiro Cho | |
it consists of - ECN support in TCP - tunnel-egress and fragment reassembly rules in layer-3 not to lose congestion info at tunnel-egress and fragment reassembly to enable ECN in TCP, build a kernel with TCP_ECN, and then, turn it on by "sysctl -w net.inet.tcp.ecn=1". ok deraadt@ | |||
2002-03-14 | First round of __P removal in sys | Todd C. Miller | |
2002-03-08 | use timeout(9) to schedule TCP timers. this avoid traversing all | Niels Provos | |
tcp connections during tcp_slowtimo. apdapted from thorpej@netbsd.org |