| Commit message (Expand) | Author | Age | Files | Lines |
* | Kill yet another argument to functions in IPv6. This time ip6_output's |  claudio | 2015-09-11 | 1 | -2/+2 |
* | Only half of the IPv6 source address was used as input for the syn |  bluhm | 2015-09-10 | 1 | -11/+11 |
* | if_put added to the if_get calls. Reshuffle some code to make this easier. |  claudio | 2015-09-10 | 1 | -10/+22 |
* | The syn cache is completely implemented in tcp_input.c. So all its |  bluhm | 2015-08-27 | 1 | -1/+8 |
* | Set the required IPL at the syn-cache pool instead of doing a |  bluhm | 2015-08-24 | 1 | -10/+5 |
* | Rename the syn cache counter into tcp_syn_cache_count to have the |  bluhm | 2015-08-24 | 1 | -7/+9 |
* | Use foreach queue macros in tcp syn cache. |  bluhm | 2015-08-13 | 1 | -6/+3 |
* | In tcp syn cache convert the struct sockaddr casts to satosin() |  bluhm | 2015-08-13 | 1 | -13/+12 |
* | Expand ancient NTOHL/NTOHS/HTONS/HTONL macros. |  mpi | 2015-07-16 | 1 | -10/+10 |
* | m_freem() can handle NULL, do not check for this condition beforehands. |  deraadt | 2015-07-15 | 1 | -9/+5 |
* | Make KASSERT in tcp_input() less strict, tcpcb may be NULL. |  bluhm | 2015-07-10 | 1 | -2/+2 |
* | Remove unused arguments and the associated code from nd6_nud_hint(). |  mpi | 2015-07-09 | 1 | -2/+2 |
* | Store a unique ID, an interface index, rather than a pointer to the |  mpi | 2015-06-16 | 1 | -6/+7 |
* | Introduce unhandled_af() for cases where code conditionally does |  jsg | 2015-06-07 | 1 | -3/+5 |
* | Replace a bunch of == 0 with == NULL in pointer tests. Nuke some |  krw | 2015-06-07 | 1 | -21/+21 |
* | test mbuf pointers against NULL not 0 |  jsg | 2015-05-13 | 1 | -2/+2 |
* | remove unfinished/unused support for socket-attached ipsec-policies |  markus | 2015-04-16 | 1 | -29/+1 |
* | Remove support for storing credentials and auth information in the kernel. |  mikeb | 2015-04-14 | 1 | -22/+1 |
* | Count dropped SYN packets on the tcpstat. They are dropped due to the |  yasuoka | 2015-02-08 | 1 | -2/+4 |
* | unifdef INET in net code as a precursor to removing the pretend option. |  tedu | 2014-12-19 | 1 | -13/+1 |
* | Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>. |  mpi | 2014-12-05 | 1 | -1/+2 |
* | In TCP and UDP layers do not (ab)use the receiving interface to check |  mpi | 2014-11-20 | 1 | -6/+1 |
* | move arc4random prototype to systm.h. more appropriate for most code |  tedu | 2014-11-18 | 1 | -3/+1 |
* | Remove "pl" suffix on pool names. |  mpi | 2014-11-04 | 1 | -2/+2 |
* | Fix indentation of closing brace. |  bluhm | 2014-10-24 | 1 | -2/+2 |
* | Use rtfree() instead of RTFREE(), NULLify some free'd route pointers and |  mpi | 2014-10-14 | 1 | -3/+5 |
* | Remove #ifdef SO_OOBINLINE, it is always defined. |  bluhm | 2014-10-08 | 1 | -6/+3 |
* | Fewer <netinet/in_systm.h> ! |  mpi | 2014-07-22 | 1 | -2/+1 |
* | There is a use-after-free somewhere in the code that links the pf |  bluhm | 2014-07-11 | 1 | -2/+5 |
* | Kill in_localaddr(), one less usage of the global list of IPv4 addresses. |  mpi | 2014-04-25 | 1 | -11/+8 |
* | ip_output() using varargs always struck me as bizarre, esp since it's only |  henning | 2014-04-21 | 1 | -2/+2 |
* | we'll do fine without casting NULL to struct foo * / void * |  henning | 2014-04-21 | 1 | -4/+3 |
* | "struct pkthdr" holds a routing table ID, not a routing domain one. |  mpi | 2014-04-14 | 1 | -11/+11 |
* | clearing the _CSUM_IN_OK flags is now utterly pointless, was only done for |  henning | 2014-01-24 | 1 | -4/+2 |
* | since the cksum rewrite the counters for hardware checksummed packets |  henning | 2014-01-23 | 1 | -5/+4 |
* | Propagate an rdomain number to the nd6_lookup independently from |  mikeb | 2014-01-07 | 1 | -2/+3 |
* | Put a large chunk of the IPv6 rdomain support in-tree. |  phessler | 2013-10-20 | 1 | -3/+5 |
* | In one core dump the pointers to socket, inpcb, tcpcb on the stack |  bluhm | 2013-09-06 | 1 | -1/+3 |
* | When net.inet.ip.sourceroute is enable, store the source route |  mpi | 2013-08-13 | 1 | -3/+3 |
* | Move bridge_broadcast and subsequently all IPsec SPD lookup code out |  mikeb | 2013-07-31 | 1 | -7/+3 |
* | The reverse parameter of in_pcblookup_listen() is a boolean and not |  bluhm | 2013-07-01 | 1 | -5/+5 |
* | Always make sure that the temporary TCP protocol control block |  mikeb | 2013-06-20 | 1 | -4/+3 |
* | Increment udpstat.udps_nosec and tcpstat.tcps_rcvnosec in case packet is |  yasuoka | 2013-06-09 | 1 | -1/+2 |
* | Link pf states and socket inpcbs together more tightly. The linking |  bluhm | 2013-06-03 | 1 | -3/+16 |
* | Merge the duplicate IPv4 and IPv6 checksum checking code in tcp_input() |  bluhm | 2013-06-03 | 1 | -35/+30 |
* | Remove various external variable declaration from sources files and |  mpi | 2013-04-10 | 1 | -3/+1 |
* | Use macros sotoinpcb() and intotcpcb() instead of casts. Use NULL |  bluhm | 2013-04-02 | 1 | -7/+7 |
* | Declare struct pf_state_key in the mbuf and in_pcb header files to |  bluhm | 2013-03-29 | 1 | -5/+4 |
* | code that calls timeout functions should include timeout.h |  tedu | 2013-03-28 | 1 | -1/+2 |
* | tedu faith(4), suggested by todd@ some weeks ago after a submission by |  mpi | 2013-03-14 | 1 | -16/+1 |