search for: gofundm

Displaying 5 results from an estimated 5 matches for "gofundm".

Did you mean: gofundme
2015 Dec 02
0
[PATCH] Receive multiple packets at a time
Dave T?ht Let's go make home routers and wifi faster! With better software! https://www.gofundme.com/savewifi On Wed, Dec 2, 2015 at 2:26 PM, Samuel Thibault <samuel.thibault at ens-lyon.org> wrote: > Dave Taht, on Wed 02 Dec 2015 14:13:27 +0100, wrote: >> More recently Tom Herbert was working on udp encapsulation methods in >> the kernel "foo over udp" >&g...
2016 Mar 04
1
ipv6 default route from somewhere
On Fri, Mar 04, 2016 at 09:43:44PM +0100, Guus Sliepen wrote: > - On Linux, add "echo 0 >/proc/sys/net/ipv6/conf/$INTERFACE/accept_ra" > to tinc-up before any ifconfig or ip commands. Ah, if it's only the default route you don't want, then it's: echo 0 >/proc/sys/net/ipv6/conf/$INTERFACE/accept_ra_defrtr -- Met vriendelijke groet / with kind regards,
2015 Dec 02
2
[PATCH] Receive multiple packets at a time
Dave Taht, on Wed 02 Dec 2015 14:13:27 +0100, wrote: > More recently Tom Herbert was working on udp encapsulation methods in > the kernel "foo over udp" > > https://www.netdev01.org/docs/herbert-UDP-Encapsulation-Linux.pdf > > https://lwn.net/Articles/614348/ > > which preserve things important at high rates like GRO/GSO. Yes, FOU will probably get the highest
2015 Dec 02
0
[PATCH] Receive multiple packets at a time
...e also some notes there on how to do tos encapsulation more right in the upcoming ecn'd world.... and I think I discussed here the prospect of doing a fully fq'd vpn utilizing an entire ipv6 /64.... Dave T?ht Let's go make home routers and wifi faster! With better software! https://www.gofundme.com/savewifi On Wed, Dec 2, 2015 at 12:58 PM, Samuel Thibault <samuel.thibault at ens-lyon.org> wrote: > Hello, > > Linux has a recvmmsg() system call which allows to achieve several > recvfrom() at a time. The patch below makes tinc use it (patch against > 1.1-pre11). Basi...
2015 Dec 02
5
[PATCH] Receive multiple packets at a time
Hello, Linux has a recvmmsg() system call which allows to achieve several recvfrom() at a time. The patch below makes tinc use it (patch against 1.1-pre11). Basically the patch turns the handle_incoming_vpn_data variables into arrays (of size 1 when recvmmsg is not available, and thus compiled the same as before), and makes the code index into the arrays. You may want to use interdiff -w