Re: [OpenWrt-Devel] hostapd 2.7 released

2018-12-12 Thread Michael Marley
On 2018-12-12 14:37, Hauke Mehrtens wrote: On 12/12/18 10:39 AM, Daniel Golle wrote: Hi! hostapd 2.7 has been released on December 2nd: http://w1.fi/cgit/hostap/plain/hostapd/ChangeLog I've updated the hostapd package to use the hostapd_2_7 tag with our patches on top, find it in my staging tr

Re: [OpenWrt-Devel] [PATCH] CC: toolchain: use latest glibc 2.21 revision

2016-03-16 Thread Michael Marley
OK, I was planning on making a patch for 2.23 in trunk later today. Michael On 03/16/16 06:23, John Crispin wrote: > > On 16/03/2016 11:21, Michael Marley wrote: >> When I originally posted this patch, GLIBC 2.23 had not yet been >> released. Additionally, this was a patch to

Re: [OpenWrt-Devel] [PATCH] CC: toolchain: use latest glibc 2.21 revision

2016-03-16 Thread Michael Marley
-Original Message- > From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] On > Behalf Of Michael Marley > Sent: Wednesday, February 17, 2016 7:46 PM > To: openwrt-devel@lists.openwrt.org > Subject: [OpenWrt-Devel] [PATCH] CC: toolchain: use latest glibc 2.21 > revision

[OpenWrt-Devel] [PATCH] CC: toolchain: use latest glibc 2.21 revision

2016-02-17 Thread Michael Marley
Fixes "CVE-2015-7547 --- glibc getaddrinfo() stack-based buffer overflow" Signed-off-by: Michael Marley --- toolchain/glibc/Config.version | 6 -- toolchain/glibc/common.mk | 12 +++- toolchain/glibc/patches/2.

Re: [OpenWrt-Devel] [PATCH] qos-scripts: Add IPv6 support

2016-01-22 Thread Michael Marley
The problem still happens for me even without the txqueuelen change. Michael On 01/22/16 07:15, Felix Fietkau wrote: > On 2016-01-22 13:12, Weedy wrote: >> ~Off topic~ >> >> So I'm going to guess this means both of you have qos-scripts running >> on current trunk builds? >> >> Have you seen anyon

[OpenWrt-Devel] [PATCH] qos-scripts: Add IPv6 support

2016-01-21 Thread Michael Marley
ommand line, causing the rule to be applied to all protocols. The iptables part is accomplished by adding each rule using both iptables and ip6tables. This patch is based on previous work by Ilkka Ollakka and Dominique Martinet. Signed-off-by: Michael Marley --- .../qos-scripts/files/usr/lib/qos/g

Re: [OpenWrt-Devel] [PATCH] qos-scripts: Add IPv6 support

2016-01-21 Thread Michael Marley
iptables part is accomplished by adding each rule using both iptables and ip6tables. This patch is based on previous work by Ilkka Ollakka and Dominique Martinet. Signed-off-by: Michael Marley --- .../qos-scripts/files/usr/lib/qos/generate.sh | 90 +++--- .../qos-scripts/fil

[OpenWrt-Devel] [PATCH] qos-scripts: Add IPv6 support

2016-01-19 Thread Michael Marley
using both iptables and ip6tables. This patch is based on previous work by Ilkka Ollakka and Dominique Martinet. Signed-off-by: Michael Marley --- .../qos-scripts/files/usr/lib/qos/generate.sh | 86 +++--- .../qos-scripts/files/usr/lib/qos/tcrules.awk | 2 +- 2 files c

[OpenWrt-Devel] [PATCH] qos-scripts: Allow classification by the traffic's source interface

2016-01-19 Thread Michael Marley
This adds a "srciface" option that can be used on classification rules in /etc/config/qos. This is useful to allow prioritization based on the local network from which the traffic originates, for example to deprioritize traffic from a guest network. Signed-off-by: Michael Marley --

[OpenWrt-Devel] [PATCH] qos-scripts: Fix classification of ingress traffic

2016-01-19 Thread Michael Marley
Set the save-mark mask for the qos_${cg} chain to 0xff instead of 0xf0. With the old value, the nibble that was saved would be masked during the restore, preventing ingress traffic from being classified. Thanks to nbd for recommending the fix. Signed-off-by: Michael Marley --- package/network