Age | Commit message (Expand) | Author |
2019-04-28 | Removes the KERNEL_LOCK() from bridge(4)'s output fast-path. | Martin Pieuchot |
2019-01-18 | Bring back the ip_pcbopts() refactor. Pad the option buffer and therefor | Claudio Jeker |
2019-01-18 | Revert Rev 1.351, the change is not quite right yet. | Claudio Jeker |
2019-01-06 | Rewrite ip_pcbopts() to fill a fresh mbuf with the ip options instead | Claudio Jeker |
2019-01-03 | Replace a funky 'else switch' construct into something that is equal but | Claudio Jeker |
2018-12-20 | Replace a wrong poor mans m_trailingspace() with the real thing. The mbuf | Claudio Jeker |
2018-08-28 | Add per-TDB counters and a new SADB extension to export them to | Martin Pieuchot |
2018-07-12 | Introduce ipsec_output_cb() to merge duplicate code and account for | Martin Pieuchot |
2018-03-21 | In ip6_output() check that the interface of a route is valid. For | Alexander Bluhm |
2018-02-19 | Remove almost unused `flags' argument of suser(). | Martin Pieuchot |
2017-11-22 | It does not make sense to call pcb lookup from pf during packet | Alexander Bluhm |
2017-10-26 | Stop grabbing the KERNEL_LOCK() in network tasks when `ipsec_in_use' | Martin Pieuchot |
2017-09-20 | Use m_copym() instead of m_dup_pkt() to fix a kernel assert when | Visa Hankala |
2017-09-01 | Change sosetopt() to no longer free the mbuf it receives and change | Martin Pieuchot |
2017-05-29 | Per-interface list of addresses, both multicast and unicast, are | Martin Pieuchot |
2017-04-19 | Use the rt_rmx defines that hide the struct rt_kmetrics indirection. | Alexander Bluhm |
2017-04-11 | Partially revert previous mallocarray conversions that contain | David Hill |
2017-04-09 | Use mallocarray to allocate multicast group memberships. | David Hill |
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 |
2016-12-19 | Extend the multicast sockets and multicast hash table support to multiple | Rafael Zalamena |
2016-12-19 | Introduce the NET_LOCK() a rwlock used to serialize accesses to the parts | Martin Pieuchot |
2016-11-28 | Kill a micro optimization that no longer make sense since the two routing | Martin Pieuchot |
2016-11-18 | turn ipstat into a set of percpu counters. | David Gwynne |
2016-11-14 | Automatically create a default lo(4) interface per rdomain. | Martin Pieuchot |
2016-11-14 | turn ipstat into a set of percpu counters. | David Gwynne |
2016-09-04 | Prevent a NULL derefernce in ip_output(). | Martin Pieuchot |
2016-08-15 | replace the last uses of m_copym2 with m_dup_pkt. | David Gwynne |
2016-07-01 | Allow resetting the IP_TTL and IP_MINTTL sockopts | Jeremie Courreges-Anglas |
2016-06-23 | when pf_test returns something but PF_PASS, set error to EACCES | Henning Brauer |
2016-05-31 | Inverse two conditions to not grabe the KERNEL_LOCK for every multicast | Martin Pieuchot |
2016-05-04 | Preserve DiffServ value when fragmenting an ipv4 packet. | Vincent Gross |
2016-04-29 | Do not allow to change the routing table of a bound socket. This | Alexander Bluhm |
2016-04-18 | Unbreak RAMDISK, found by deraadt@ | Martin Pieuchot |
2016-04-18 | Put a KERNEL_LOCK/UNLOCK dance around sections that still need some | Martin Pieuchot |
2016-02-11 | Return ENOBUFS when bumping in the multicast max group memberships | Jeremie Courreges-Anglas |
2016-01-21 | Introduce in{,6}_hasmulti(), two functions to check in the hot path if | Martin Pieuchot |
2016-01-13 | Prevent a double if_put(). | Martin Pieuchot |
2015-12-05 | upgrade tcp/ip to use the latest in C89 technology: memcpy. | Ted Unangst |
2015-12-03 | deleting ip_insertoptions() prototype, which is no longer needed | Alexandr Nedvedicky |
2015-12-03 | add ifdef IPSEC for protoypes; requested by mpi@ | Markus Friedl |
2015-12-03 | Remove broadcast matching from ifa_ifwithaddr(), use in_broadcast() where | Vincent Gross |
2015-12-02 | factor out ip_output_ipsec_{lookup,send}(); with & ok claudio@ | Markus Friedl |
2015-12-02 | Kill the RT_REPORT flag to rtalloc() and stop sending RTM_MISS messages | Claudio Jeker |
2015-12-01 | typo in comment | mmcc |
2015-11-26 | Use rtalloc(9) to look for a local address (RTF_LOCAL) in ip_setmoptions(). | Martin Pieuchot |
2015-11-19 | Grab the KERNEL_LOCK around ip_mforward(), in preparation for unlocking | Martin Pieuchot |
2015-11-11 | Store the index of the lo0 interface instead of a pointer to its | Martin Pieuchot |
2015-11-03 | Disable TCP/UDP TX hardware checksumming if an IPv4 packet contains | Christian Weisgerber |