| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | "struct pkthdr" holds a routing table ID, not a routing domain one. |  mpi | 2014-04-14 | 1 | -4/+4 |
* | Remove the number of in6_var.h inclusions by moving some functions and |  mpi | 2013-10-24 | 1 | -3/+1 |
* | Remove the number of in_var.h inclusions by moving some functions and |  mpi | 2013-10-23 | 1 | -2/+1 |
* | Sprinkle a lot more IPv6 routing domains support in the kernel. |  phessler | 2013-10-21 | 1 | -11/+6 |
* | Put a large chunk of the IPv6 rdomain support in-tree. |  phessler | 2013-10-20 | 1 | -5/+5 |
* | make in_proto_cksum_out not rely on the pseudo header checksum to be |  henning | 2013-10-19 | 1 | -5/+2 |
* | Pass the routing domain to IPv6 pr_ctlinput() like in IPv4. |  bluhm | 2013-06-01 | 1 | -5/+2 |
* | The function rip6_ctlinput() claims that sa6_src is constant to |  bluhm | 2013-05-31 | 1 | -6/+6 |
* | Remove various external variable declaration from sources files and |  mpi | 2013-04-10 | 1 | -6/+3 |
* | Use macros sotoinpcb() and intotcpcb() instead of casts. Use NULL |  bluhm | 2013-04-02 | 1 | -4/+4 |
* | code that calls timeout functions should include timeout.h |  tedu | 2013-03-28 | 1 | -1/+2 |
* | no need for a lot of code to include proc.h |  tedu | 2013-03-28 | 1 | -2/+1 |
* | change the malloc(9) flags from M_DONTWAIT to M_NOWAIT; OK millert@ |  gsoares | 2012-12-28 | 1 | -2/+2 |
* | Increase TCP's initial window to 10 * MSS or 14600 bytes as proposed in |  claudio | 2012-03-10 | 1 | -2/+2 |
* | for key material that is being being discarded, convert bzero() to |  deraadt | 2011-01-11 | 1 | -2/+2 |
* | Fix the naming of interfaces and variables for rdomains and rtables |  guenther | 2010-07-03 | 1 | -16/+7 |
* | Replace pool_get() + bzero() with pool_get(..., PR_ZERO). |  chl | 2010-01-15 | 1 | -3/+2 |
* | Extend the protosw pr_ctlinput function to include the rdomain. This is |  claudio | 2009-11-13 | 1 | -7/+15 |
* | rtables are stacked on rdomains (it is possible to have multiple routing |  claudio | 2009-11-03 | 1 | -3/+2 |
* | sockets created via a listening socket lose the rdomain and fail to work |  claudio | 2009-08-10 | 1 | -3/+3 |
* | Initial support for routing domains. This allows to bind interfaces to |  claudio | 2009-06-05 | 1 | -4/+7 |
* | rename arc4random_bytes => arc4random_buf to match libc's nicer name; |  djm | 2008-06-09 | 1 | -2/+2 |
* | remove tcp_drain code since it's not longer used; ok henning, feedback thib |  markus | 2008-05-06 | 1 | -22/+1 |
* | remove old unused TCP isn code; ok henning, dhartmei, mcbride |  markus | 2008-02-20 | 1 | -48/+1 |
* | when creating a response, use the correct TCP header instead of |  markus | 2008-02-20 | 1 | -64/+52 |
* | TCP_COMPAT_42 was last used in 1997. Kill it. |  deraadt | 2007-11-27 | 1 | -5/+1 |
* | arc4random_bytes() is the preferred interface for generating nonces; |  djm | 2007-09-18 | 1 | -2/+2 |
* | since the |  henning | 2007-09-01 | 1 | -1/+2 |
* | merge tcp_set_iss() and tcp_set_tsm(); ok mcbride, djm (on earlier version) |  markus | 2007-06-25 | 1 | -46/+13 |
* | Drop the current random timestamps and the current ISN generation |  markus | 2007-06-15 | 1 | -7/+71 |
* | apply the "skip ipsec if there are no flows" speedup diff to IPv6 too. |  henning | 2007-06-01 | 1 | -2/+3 |
* | tcp_iss usage is ifdef TCP_COMPAT_42, so the variable decl can be too |  deraadt | 2007-05-09 | 1 | -1/+3 |
* | variables used by #ifdef code should be inside #ifdef too |  deraadt | 2007-05-08 | 1 | -1/+5 |
* | With the exception of two other small uncommited diffs this moves |  brad | 2006-03-04 | 1 | -2/+2 |
* | Enable RFC3390 by default and remove a few compile time options which |  brad | 2005-09-28 | 1 | -24/+5 |
* | change the TCP reass queue from LIST to TAILQ; |  markus | 2005-08-02 | 1 | -7/+7 |
* | implement PMTU checks from |  markus | 2005-06-30 | 1 | -3/+40 |
* | Ignore ICMP Source Quench messages meant for TCP connections. (Details in |  fgont | 2005-05-24 | 1 | -17/+11 |
* | - check th_ack against snd_una/max; from Raja Mukerji via hugh@ |  markus | 2005-03-04 | 1 | -1/+5 |
* | 1. tcp_xmit_timer(): remove extra rtt decrement (t_rtttime is 0-based |  markus | 2005-02-27 | 1 | -2/+3 |
* | Make sure bogus values don't make their way into tcp_xmit_timer() calculations. |  mcbride | 2005-01-10 | 1 | -2/+2 |
* | fix for race between invocation for timer and network input |  markus | 2004-11-25 | 1 | -3/+18 |
* | Modulate tcp_now by a random amount on a per-connection basis. |  mcbride | 2004-10-28 | 1 | -2/+1 |
* | verify th_seq in icmp errors; report Fernando Gont; ok mcbride@, dhartmei@ |  markus | 2004-08-10 | 1 | -31/+53 |
* | First step towards more sane time handling in the kernel -- this changes |  tholo | 2004-06-21 | 1 | -3/+3 |
* | factor out md5 code; ok+tests henning@, djm@, hshoexer@ |  markus | 2004-06-08 | 1 | -1/+76 |
* | Replace RSA-derived md5 code with code derived from Colin Plumb's PD version. |  millert | 2004-05-07 | 1 | -2/+2 |
* | The tcp specific routing metrics are almost never used so reduce the routing |  claudio | 2004-05-04 | 1 | -111/+1 |
* | - allow the user to force the TCP mss below the fail-safe 216 with a low |  frantzen | 2004-04-26 | 1 | -8/+10 |
* | limit total number of queued out-of-order packets to NMBCLUSTERS/2; ok mcbride |  markus | 2004-03-02 | 1 | -4/+8 |