Age | Commit message (Expand) | Author |
2020-01-24 | provide a tun_input() interface input handler for tun(4) packets. | David Gwynne |
2020-01-24 | change tun_dev_write to allocate one mbuf and cluster for the whole packet. | David Gwynne |
2020-01-23 | simplify the uiomove loop in tun_dev_read. | David Gwynne |
2020-01-23 | don't need to manage TUN_NBIO ourselves, we get IO_NDELAY for free. | David Gwynne |
2020-01-23 | provide a custom if_enqueue handler. | David Gwynne |
2020-01-23 | remove IFCAP_VLAN_MTU from tap(4). it's a lie. | David Gwynne |
2020-01-23 | unify the tun and tap output and read behaviour. | David Gwynne |
2020-01-23 | mild whitespace massaging. no functional change. | David Gwynne |
2020-01-23 | don't prototype the cdev entrypoints, sys/conf.h already does it. | David Gwynne |
2020-01-23 | remove PIPEX from tun(4) now that pppac(4) should be used instead. | David Gwynne |
2020-01-23 | fix some ioctl/kq weirdness in the pppx(4) side of things. | David Gwynne |
2020-01-22 | add pppac(4) code for a dedicated PPP Access Concentrator interface. | David Gwynne |
2020-01-08 | Check address family of pf ioctl(2) DIOCNATLOOK parameter at kernel | Alexander Bluhm |
2020-01-08 | Unify handling of ioctls FIOSETOWN/SIOCSPGRP/TIOCSPGRP and | Visa Hankala |
2020-01-08 | Fix confusion around rtlabelid and rtableid in rt_ifa_add() and rt_ifa_del(). | Claudio Jeker |
2020-01-08 | In loop_clone_destroy() reset the rdomain with rtable_l2set() after | Claudio Jeker |
2020-01-02 | Switch bpf to use pgsigio(9) and sigio_init(9) instead of handrolling | Claudio Jeker |
2020-01-02 | Switch tun(4) and tap(4) to use pgsigio(9) and sigio_init(9) for | Claudio Jeker |
2019-12-31 | Use C99 designated initializers with struct filterops. In addition, | Visa Hankala |
2019-12-23 | when aggr(4) comes up, check port link state to push the rxm forward. | David Gwynne |
2019-12-19 | poll handlers must return a poll(2) revents value, not errno(2) values. | Reyk Floeter |
2019-12-15 | Add a missing unlock. | Visa Hankala |
2019-12-11 | use sockaddr_storage to store the address used to generate mcast entries. | David Gwynne |
2019-12-06 | when copying capabilities from the first port to a trunk, copy hardmtu too. | David Gwynne |
2019-11-27 | use correct forward type declaration from uvm. | Bob Beck |
2019-11-27 | OpenFlow 1.3 defines packet header patterns of interest using TLVs (OXMs) | akoshibe |
2019-11-26 | Use proper NUL byte not zero with strings | kn |
2019-11-26 | fix kernel crash in pf_ioctl with WITH_PF_LOCK and NET_TASKQ > 1 | Alexandr Nedvedicky |
2019-11-26 | s/sc_arpcom/sc_ac/ to be consistent with other drivers. | David Gwynne |
2019-11-26 | use "sc" as the name of tun_softc variables, not "tp". | David Gwynne |
2019-11-24 | If the RTM_PROPOSAL is a solicitation proposal forward the request to | Claudio Jeker |
2019-11-24 | Make it possible to call ether_rtrequest with a NULL rt argument. | Claudio Jeker |
2019-11-23 | Move srtdnstosa() static inline function under #ifdef _KERNEL. This way | Claudio Jeker |
2019-11-22 | The DNS proposal list can (soon) be empty to signal a withdraw, relax | Florian Obser |
2019-11-22 | Add rtm_proposal, a function to send out RTM_PROPOSAL messages from the | Claudio Jeker |
2019-11-21 | Fix comment typo: specification | akoshibe |
2019-11-21 | rename struct tun_softc members so they're prefixed with "sc". | David Gwynne |
2019-11-21 | Remove duplicate #define OFP_ALIGNMENT | akoshibe |
2019-11-19 | take care to avoid a race when creating the same interface. | David Gwynne |
2019-11-18 | don't leak the the task struct used for the addrhook in pfi_detach_ifnet. | David Gwynne |
2019-11-17 | "set delay" never worked as committed: the delay field was not copied | Otto Moerbeek |
2019-11-14 | avoid a use after free in if_delgroup. | David Gwynne |
2019-11-13 | Non root user must not use ioctl(2) to mess around with the address | Alexander Bluhm |
2019-11-13 | Non root users must not set the parameters of pppoe(4) interfaces. | Alexander Bluhm |
2019-11-13 | unbreak ramdisks | Theo de Raadt |
2019-11-12 | check for privileged bridges ioctls next to the other privileged ioctls. | David Gwynne |
2019-11-12 | SIOCDVNETID mutates state, so should only be run by root. | David Gwynne |
2019-11-11 | add linkstate hooks at the head of the tailq. | David Gwynne |
2019-11-11 | you still need newlines when using log(9). add some errnos while here. | David Gwynne |
2019-11-10 | whitespace fixes, no functional change | David Gwynne |