Age | Commit message (Expand) | Author |
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 |
2015-10-24 | Convert some if_ref() to if_get(). | Martin Pieuchot |
2015-10-20 | add a new getsockopt option IP_IPDEFTTL to retrieve the default ttl. | Sebastian Benoit |
2015-10-19 | Stop checking for RTF_UP directly, call rtisvalid(9) instead. | Martin Pieuchot |
2015-10-13 | Use rtisivalid(9) to check if the given (cached) route can be used. | Martin Pieuchot |
2015-10-07 | easy size for free(); ok mpi | Theo de Raadt |
2015-09-23 | Always increment rt_use inside rtalloc(9) instead of doing it in some | Martin Pieuchot |
2015-09-13 | There's no point in abstracting ifp->if_output() as long as pf_test() | Martin Pieuchot |
2015-09-13 | Get the default loopback interface pointer just after doing a route | Martin Pieuchot |
2015-09-12 | Stop overwriting the rt_ifp pointer of RTF_LOCAL routes with lo0ifp. | Martin Pieuchot |
2015-09-12 | Introduce if_input_local() a function to feed local traffic back to | Martin Pieuchot |
2015-09-12 | Fix two cases where it was possible to call if_put with an uninitialized ifp | Claudio Jeker |
2015-09-11 | if_put() after if_get for ip_output. This became suddenly super trivial. | Claudio Jeker |
2015-09-11 | There is no need to do the route lookups twice just because of IPSec. | Claudio Jeker |
2015-09-03 | Revert (again!) the two uses of rtisvalid(9), they break NFS! | Martin Pieuchot |
2015-09-03 | Convert ip{,6}_output() (cached) route entry checks to rtisvalid(9). | Martin Pieuchot |
2015-09-02 | Revert the two uses of rtisvalid(9) for the moment, it breaks dhclient(8) | Martin Pieuchot |
2015-09-01 | Convert ip{,6}_output() (cached) route entry checks to rtisvalid(9). | Martin Pieuchot |
2015-08-31 | `encif' should only be used under #ifdef NPF. | Martin Pieuchot |
2015-07-16 | Kill IP_ROUTETOETHER. | Martin Pieuchot |
2015-07-15 | m_freem() can handle NULL, do not check for this condition beforehands. | Theo de Raadt |
2015-06-30 | Get rid of the undocumented & temporary* m_copy() macro added for | Martin Pieuchot |
2015-06-16 | Store a unique ID, an interface index, rather than a pointer to the | Martin Pieuchot |
2015-06-07 | Replace a bunch of == 0 with == NULL in pointer tests. Nuke some | Kenneth R Westerback |
2015-05-23 | remove PACKET_TAG_IPSEC_PENDING_TDB, it is never set; ok mikeb@ | Markus Friedl |
2015-05-13 | test mbuf pointers against NULL not 0 | Jonathan Gray |
2015-04-17 | Stubs and support code for NIC-enabled IPsec bite the dust. | Mike Belopuhov |
2015-04-16 | remove unfinished/unused support for socket-attached ipsec-policies | Markus Friedl |