Re: [OpenWrt-Devel] running docker on openwrt?

2018-10-08 Thread Torbjorn Jansson
On 2018-10-07 17:00, Daniel Golle wrote: On Sun, Oct 07, 2018 at 04:54:42PM +0200, Torbjorn Jansson wrote: On 2018-09-30 16:21, Daniel Golle wrote: On Sun, Sep 30, 2018 at 02:18:54PM +0200, Torbjorn Jansson wrote: On 2018-09-30 13:59, Daniel Golle wrote: On Sun, Sep 30, 2018 at 12:21:12PM

[OpenWrt-Devel] Trommelwirbel für makeroom.at

2018-10-08 Thread Thea Martin
Sehr geehrte Frau, sehr geehrter Herr, Wir sind froh, Ihnen mitteilen zu können das der Domain makeroom.at zur möglichen Abgabe steht. Würden Sie mir bitte eine kurze Rückmeldung geben ob wir Ihre Interesse geweckt haben? Ich wünsche Ihnen einen schönen Wochenanfang. Thea Martin

Re: [OpenWrt-Devel] [PATCH] wireguard: bump to 0.0.20181006

2018-10-08 Thread Andre Heider
Hi Jason, On 06/10/2018 05:09, Jason A. Donenfeld wrote: diff --git a/package/network/services/wireguard/Makefile b/package/network/services/wireguard/Makefile index 29c7447..3544e34 100644 --- a/package/network/services/wireguard/Makefile +++ b/package/network/services/wireguard/Makefile @@

Re: [OpenWrt-Devel] [PATCH 2/5] hostapd: add ubus switch_chan method to ifaces

2018-10-08 Thread Yury Shvedov
Hi! Here is the series of patches on hostapd, I'm using in my project. They are introduces more informative communication with ubus, used by me. I thought it could be useful for someone. But something hell strange happened with the series while sending. Sorry for this mess. Can someone

[OpenWrt-Devel] [PATCH 3/5] hostapd: Add ubus accounting

2018-10-08 Thread Yury Shvedov
This implements ubus accounting events. This accounting works the same manner as the RADIUS accounting, except the interim (see below). There tree types of messages: start, stop and interim. Start sent when new client connected. There just current time, address and session_id of client in

[OpenWrt-Devel] [PATCH 4/5] hostapd: Add channel information to iface state event

2018-10-08 Thread Yury Shvedov
This adds wide information about current channel of interface to hostapd.iface_state event. Additional event sent when interface completes csa operation. Signed-off-by: Yury Shvedov --- .../hostapd/patches/600-ubus_support.patch| 8 +++ .../services/hostapd/src/src/ap/ubus.c| 69

[OpenWrt-Devel] [PATCH 5/5] hostapd: update switch_channel methods

2018-10-08 Thread Yury Shvedov
This patch implements more complex procedure of channel switching. It can accept the list of channel features witch can contain the list of channel numbers or frequencies. There two type of operation - fast and not fast. To be more, accurate, there two operations now - switch_chan and

[OpenWrt-Devel] [PATCH 2/5] hostapd: add ubus switch_chan method to ifaces

2018-10-08 Thread Yury Shvedov
switch_chan method now could be called directly by hostapd_iface object. Signed-off-by: Yury Shvedov --- .../services/hostapd/src/src/ap/ubus.c| 145 +++--- 1 file changed, 86 insertions(+), 59 deletions(-) diff --git a/package/network/services/hostapd/src/src/ap/ubus.c

[OpenWrt-Devel] [PATCH 4/5] hostapd: Add channel information to iface state event

2018-10-08 Thread Yury Shvedov
This adds wide information about current channel of interface to hostapd.iface_state event. Additional event sent when interface completes csa operation. Signed-off-by: Yury Shvedov --- .../hostapd/patches/600-ubus_support.patch| 8 +++ .../services/hostapd/src/src/ap/ubus.c| 69

[OpenWrt-Devel] [PATCH] kernel: fix downloading rcX releases

2018-10-08 Thread Rafał Miłecki
From: Rafał Miłecki They are no longer stored in the "testing" subdirectory and are not available as .tar.xz archives. If -rc is detected download it from the git.kernel.org and use .tar.gz. Signed-off-by: Rafał Miłecki --- include/kernel-defaults.mk | 10 -- include/kernel.mk

[OpenWrt-Devel] [PATCH 1/5] hostapd: add ubus hostapd_iface object

2018-10-08 Thread Yury Shvedov
Ubus hostapd_iface object has get_state and get_bss methods, this patch additionally sends events with interfaces' states. This allows outer system to watch interfaces prior they enabled and handle the errors. This actually reverts the f0ac9afe695ed297caf093f02144b2adf04bca87 patch and adds

[OpenWrt-Devel] [PATCH 3/5] hostapd: Add ubus accounting

2018-10-08 Thread Yury Shvedov
This implements ubus accounting events. This accounting works the same manner as the RADIUS accounting, except the interim (see below). There tree types of messages: start, stop and interim. Start sent when new client connected. There just current time, address and session_id of client in

[OpenWrt-Devel] [PATCH 1/5] hostapd: add ubus hostapd_iface object

2018-10-08 Thread Yury Shvedov
Ubus hostapd_iface object has get_state and get_bss methods, this patch additionally sends events with interfaces' states. This allows outer system to watch interfaces prior they enabled and handle the errors. This actually reverts the f0ac9afe695ed297caf093f02144b2adf04bca87 patch and adds

[OpenWrt-Devel] [PATCH 5/5] hostapd: update switch_channel methods

2018-10-08 Thread Yury Shvedov
This patch implements more complex procedure of channel switching. It can accept the list of channel features witch can contain the list of channel numbers or frequencies. There two type of operation - fast and not fast. To be more, accurate, there two operations now - switch_chan and

[OpenWrt-Devel] [PATCH 2/5] hostapd: add ubus switch_chan method to ifaces

2018-10-08 Thread Yury Shvedov
switch_chan method now could be called directly by hostapd_iface object. Signed-off-by: Yury Shvedov --- .../services/hostapd/src/src/ap/ubus.c| 145 +++--- 1 file changed, 86 insertions(+), 59 deletions(-) diff --git a/package/network/services/hostapd/src/src/ap/ubus.c

Re: [OpenWrt-Devel] [PATCH] wireguard: bump to 0.0.20181006

2018-10-08 Thread Lucian Cristian
On 08.10.2018 11:56, Andre Heider wrote: Hi Jason, On 06/10/2018 05:09, Jason A. Donenfeld wrote: diff --git a/package/network/services/wireguard/Makefile b/package/network/services/wireguard/Makefile index 29c7447..3544e34 100644 --- a/package/network/services/wireguard/Makefile +++