Age | Commit message (Expand) | Author |
2017-12-01 | Simplify the reverse PCB lookup logic. The PF_TAG_TRANSLATE_LOCALHOST | Alexander Bluhm |
2017-11-30 | Fix typos in comments. | Nayden Markatchev |
2017-11-20 | Sprinkle some NET_ASSERT_LOCKED(), const and co to prepare running | Martin Pieuchot |
2017-11-02 | Move PRU_DETACH out of pr_usrreq into per proto pr_detach | Florian Obser |
2017-10-25 | Remove the TCP_FACK option and associated #if{,n}def code. | job |
2017-10-22 | Unconditionally enable TCP selective acknowledgements (SACK) | Mike Belopuhov |
2017-10-09 | Reduces the scope of the NET_LOCK() in sysctl(2) path. | Martin Pieuchot |
2017-09-05 | Replace NET_ASSERT_LOCKED() by soassertlocked() in *_usrreq(). | Martin Pieuchot |
2017-09-01 | Change sosetopt() to no longer free the mbuf it receives and change | Martin Pieuchot |
2017-08-15 | Convert hand rolled sockaddr checks to the nam2sin functions. | Alexander Bluhm |
2017-06-26 | Assert that the corresponding socket is locked when manipulating socket | Martin Pieuchot |
2017-05-18 | Merge the content of <netinet/tcpip.h> and <netinet6/tcpipv6.h> in | Martin Pieuchot |
2017-05-16 | Replace remaining splsoftassert(IPL_SOFTNET) by NET_ASSERT_LOCKED(). | Martin Pieuchot |
2017-05-13 | Do not check for mapped addresses in tcp_usrreq(PRU_CONNECT), | Alexander Bluhm |
2017-05-12 | Use the common switch(af) construct for address family specific | Alexander Bluhm |
2017-04-05 | When building counter memory in preparation to copy to userland, always | Theo de Raadt |
2017-04-02 | Fix tcp stats reporting | Jeremie Courreges-Anglas |
2017-03-13 | Move PRU_ATTACH out of the pr_usrreq functions into pr_attach. | Claudio Jeker |
2017-02-09 | percpu counters for TCP stats | Jeremie Courreges-Anglas |
2017-02-01 | In sogetopt, preallocate an mbuf to avoid using sleeping mallocs with | David Hill |
2017-01-10 | Remove NULL checks before m_free(9), it deals with it. | Martin Pieuchot |
2017-01-03 | Remove some recursives splsoftnet(). | Martin Pieuchot |
2016-12-26 | Typo, "more then" -> "more than" | Jeremie Courreges-Anglas |
2016-12-20 | A NET_LOCK() was is missing in tcp_sysctl() which shows up as spl | Alexander Bluhm |
2016-12-20 | Kill recursive splsoftnet()/splx() in tcp_ctloutput(). | Martin Pieuchot |
2016-12-19 | Introduce the NET_LOCK() a rwlock used to serialize accesses to the parts | Martin Pieuchot |
2016-11-21 | Enforce that pr_usrreq functions are called at IPL_SOFTNET. | Martin Pieuchot |
2016-09-24 | ANSIfy netinet/; from David Hill | Christian Weisgerber |
2016-07-20 | To tune the TCP SYN cache we need more information. Print the | Alexander Bluhm |
2016-07-20 | Make the size for the syn cache hash array tunable. As we are | Alexander Bluhm |
2016-07-11 | Do not increase the size of the socket buffer under memory pressure. | Martin Pieuchot |
2016-06-18 | Add net.inet.{tcp,udp}.rootonly sysctl, to mark which ports | Vincent Gross |
2016-03-29 | Allow to adjust tcp_syn_use_limit with sysctl net.inet.tcp.synuselimit. | Alexander Bluhm |
2016-03-23 | Merge in_pcbbind() and in6_pcbbind(), and change every call to | Vincent Gross |
2015-09-11 | in6_embedscope() needs to lose some weight. Remove the last argument. | Claudio Jeker |
2015-08-27 | When the dynamic TCP update is reducing so->so_snd.sb_hiwat the | Alexander Bluhm |
2015-07-15 | m_freem() can handle NULL, do not check for this condition beforehands. | Theo de Raadt |
2015-06-07 | Introduce unhandled_af() for cases where code conditionally does | Jonathan Gray |
2015-06-07 | Replace a bunch of == 0 with == NULL in pointer tests. Nuke some | Kenneth R Westerback |
2014-12-05 | Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>. | Martin Pieuchot |
2014-11-25 | Since in_broadcast() is now used to always iterate on all the interfaces | Martin Pieuchot |
2014-11-18 | move arc4random prototype to systm.h. more appropriate for most code | Ted Unangst |
2014-09-14 | remove uneeded proc.h includes | Jonathan Gray |
2014-07-22 | Fewer <netinet/in_systm.h> ! | Martin Pieuchot |
2014-04-06 | Remove redundant call to in{,6}_pcbbind() from tcp PRU_CONNECT. | Christopher Zimmermann |
2013-11-22 | Remove unused proc argument in in6_control(). | Martin Pieuchot |
2013-10-20 | Put a large chunk of the IPv6 rdomain support in-tree. | Peter Hessler |
2013-10-17 | The header file netinet/in_var.h included netinet6/in6_var.h. This | Alexander Bluhm |
2013-08-12 | Add the TCP socket option TCP_NOPUSH to delay sending the stream. | Alexander Bluhm |
2013-08-06 | In tcp_ctloutput() tp was assigned at two different places for IPv4 | Alexander Bluhm |