Age | Commit message (Expand) | Author |
2015-08-24 | Rework the code to decide when to perform DAD to no longer rely on the | Martin Pieuchot |
2015-07-18 | Abstract the routing table internals behind an rtable_* API. | Martin Pieuchot |
2015-06-30 | Rename if_output() into if_enqueue() to avoid confusion with comments | Martin Pieuchot |
2015-06-16 | Store a unique ID, an interface index, rather than a pointer to the | Martin Pieuchot |
2015-05-15 | Introduce if_output(), a function do to the last steps before enqueuing | Martin Pieuchot |
2015-04-10 | replace the use of ifqueues for most input queues serviced by netisr | David Gwynne |
2015-03-18 | remove the congestion handling from struct ifqueue. | David Gwynne |
2015-01-27 | remove the second void * argument on tasks. | David Gwynne |
2014-12-19 | unifdef INET in net code as a precursor to removing the pretend option. | Ted Unangst |
2014-12-05 | Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>. | Martin Pieuchot |
2014-11-18 | move arc4random prototype to systm.h. more appropriate for most code | Ted Unangst |
2014-10-08 | print ipv6cp by name rather than number in "0x8057 output <...>" debug lines, | Stuart Henderson |
2014-07-22 | Fewer <netinet/in_systm.h> ! | Martin Pieuchot |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-05-05 | Use a custom ifa_rtrequest function for point-to-point interfaces | Martin Pieuchot |
2014-05-02 | Kill annoying and useless emacs local variable. ok mikeb@ | Jeremie Courreges-Anglas |
2014-04-19 | all I wanted to do is removing the altq special casing, but then it turned | Henning Brauer |
2014-04-14 | "struct pkthdr" holds a routing table ID, not a routing domain one. | Martin Pieuchot |
2014-04-03 | It cannot be assumed the top of the mbuf chain has required length here. | YASUOKA Masahiko |
2014-03-18 | Rename rt_gettable() into rtable_get(), swap its arguments to be | Martin Pieuchot |
2014-01-13 | Call all local valiables of type struct in6_ifaddr "ia6". This is | Alexander Bluhm |
2014-01-12 | Remove no-op 'HIDE' macro from sppp code. This probably existed to allow | Stefan Sperling |
2014-01-07 | Some follow-up fixes for IFID collision handling in IPv6CP. | Stefan Sperling |
2013-12-11 | Use an u_int32_t instead of an unsigned long to store the magic number | Jeremie Courreges-Anglas |
2013-11-20 | Convert sppp(4) to taskq; ok mikeb@ mpi@ | Stefan Sperling |
2013-11-14 | Improvements for address assignment and related issues in IPv6CP. | Stefan Sperling |
2013-11-11 | Replace most of our formating functions to convert IPv4/6 addresses from | Martin Pieuchot |
2013-11-05 | Remove useless #ifdef *BSD cruft from sppp(4). No binary change. | Stefan Sperling |
2013-10-24 | Remove the number of in6_var.h inclusions by moving some functions and | Martin Pieuchot |
2013-10-01 | Format string fixes: %hu/%hd for uint16_t, %u/%d/%x for uint32_t | Stefan Fritsch |
2013-08-16 | Replace the misleading SIOC{G,S}IFGENERIC ioctls by SIOCG{G,S}PPPPARAMS. | Martin Pieuchot |
2013-07-15 | Remove a comment which is no longer true. | Martin Pieuchot |
2013-07-10 | Change the structure used in the SPPPIOSDEFS and SPPPIOGDEFS ioctls | Martin Pieuchot |
2013-06-20 | Revert previous and unbreak asr, the new include should be protected. | Martin Pieuchot |
2013-06-20 | Allocate the various hook head descriptors as part of the ifnet | Martin Pieuchot |
2013-05-31 | Remove the scrub argument from in_ifinit() and simply call in_ifscrub() | Martin Pieuchot |
2013-03-28 | do not include machine/cpu.h from a .c file; it is the responsibility of | Theo de Raadt |
2013-03-28 | no need for a lot of code to include proc.h | Ted Unangst |
2012-11-23 | Add SIOCGIFHARDMTU to allow retrieving the driver's maximum supported MTU | Stuart Henderson |
2012-07-24 | decls before code | Theo de Raadt |
2012-07-23 | Call sppp_clear_ip_addrs from a workq. Problem reported by RD Thrush and | Stuart Henderson |
2012-01-28 | Remove a horrible sppp(4)-specific "fast queue" used for tcp ports 21 23 513. | Stuart Henderson |
2012-01-19 | Teach pppoe(4) about RFC 4638. This allows negotiating increased MTU with | Stuart Henderson |
2011-07-07 | another case of "clever" fiddling with ifq internals, just stumbled over | Henning Brauer |
2011-07-06 | and make sppp_qflush a wrapper around IF_PURGE instead of handrolling | Henning Brauer |
2011-07-06 | second trial: stop messing with ifq internals, this time use IF_IS_EMPTY | Henning Brauer |
2011-07-06 | cosnistently use IFQ_SET_MAXLEN, surfaced in a discussion with + ok bluhm | Henning Brauer |
2011-07-05 | Revert henning's commit-n-run that broke the tree | Philip Guenthe |
2011-07-05 | 2 cases of IFQ_IS_EMPTY instead of mucking with ifqueue internals | Henning Brauer |
2011-06-29 | always set sppp auth secret, as other code assumes it. | Ted Unangst |