[OpenWrt-Devel] [PATCH 1/6] netifd: Apply interface metric on configured interface gateway parameters

2014-05-07 Thread Hans Dedecker
Signed-off-by: Hans Dedecker --- proto.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/proto.c b/proto.c index 3a7b2a8..0ba2fbe 100644 --- a/proto.c +++ b/proto.c @@ -270,6 +270,7 @@ parse_gateway_option(struct interface *iface, struct blob_attr *attr, bool v6)

[OpenWrt-Devel] [PATCH 2/6] netifd: Don't assume routes are always applied in all cases

2014-05-07 Thread Hans Dedecker
Signed-off-by: Hans Dedecker --- interface-ip.c |9 ++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/interface-ip.c b/interface-ip.c index 018b657..8458666 100644 --- a/interface-ip.c +++ b/interface-ip.c @@ -622,8 +622,10 @@ interface_update_host_route(struct vlist_t

[OpenWrt-Devel] [PATCH 3/6] netifd: Remove useless route table parameter check in update_proto_route

2014-05-07 Thread Hans Dedecker
Not necessary since route table parameter is used as key element in route_cmp Signed-off-by: Hans Dedecker --- interface-ip.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/interface-ip.c b/interface-ip.c index 8458666..a82d8e7 100644 --- a/interface-ip.c +++ b/interfa

[OpenWrt-Devel] [PATCH 4/6] netifd: Effectively apply configured route mtu

2014-05-07 Thread Hans Dedecker
Signed-off-by: Hans Dedecker --- interface-ip.c |2 +- system-linux.c | 15 +++ 2 files changed, 16 insertions(+), 1 deletions(-) diff --git a/interface-ip.c b/interface-ip.c index a82d8e7..33b5d43 100644 --- a/interface-ip.c +++ b/interface-ip.c @@ -581,7 +581,7 @@ interface_

[OpenWrt-Devel] [PATCH 5/6] netifd: Check interface state only when main device is set during interface_change_config

2014-05-07 Thread Hans Dedecker
Fixes a regression issue introduced by commit d2a33f3f0fe704e4396fa2ada08401cb955ba7cb for device less protocol handlers. An active interface using a deviceless protocol handler will be be teared down when the interface config is checked upon an update as the interface link and enabled parameters

[OpenWrt-Devel] [PATCH 6/6] netifd: Fix node version set after free

2014-05-07 Thread Hans Dedecker
Fixes an issue where a bridge member will be removed from the bridge upon an interface ifup as the bridge node version -1 is overwritten by vlist_add while the new created bridge member pointer is freed in bridge_member_update Signed-off-by: Hans Dedecker --- bridge.c |6 +- 1 files chan

Re: [OpenWrt-Devel] [PATCH] Fix sysntpd to use multiple servers.

2014-05-07 Thread Jo-Philipp Wich
Hi. Can you elaborate on this fix? The current implementation works fine here as well and I cannot spot a functional difference with your change. ~ Jow signature.asc Description: OpenPGP digital signature ___ openwrt-devel mailing list openwrt-devel

[OpenWrt-Devel] [PATCH 1/3] Made several parts of gnutls configurable and updated to 3.2.14.

2014-05-07 Thread Nikos Mavrogiannopoulos
--- libs/gnutls/Config.in | 33 +++ libs/gnutls/Makefile | 62 ++- 2 files changed, 89 insertions(+), 6 deletions(-) create mode 100644 libs/gnutls/Config.in diff --git a/libs/gnutls/Config.in b/libs/gnutls/Config.in new f

[OpenWrt-Devel] [PATCH 3/3] Allow gnutls to be compiled using nettle-mini.

2014-05-07 Thread Nikos Mavrogiannopoulos
--- libs/gnutls/Makefile | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libs/gnutls/Makefile b/libs/gnutls/Makefile index c2a010a..997532b 100644 --- a/libs/gnutls/Makefile +++ b/libs/gnutls/Makefile @@ -75,7 +75,7 @@ endef define Package/libgnutls $(call Package/gnutl

Re: [OpenWrt-Devel] [PATCH 1/3] Made several parts of gnutls configurable and updated to 3.2.14.

2014-05-07 Thread Florian Fainelli
Hi Nikos, 2014-05-07 14:32 GMT-07:00 Nikos Mavrogiannopoulos : Could you resubmit these patches with your Signed-off-by tag? They look good otherwise, thank you! > > --- > libs/gnutls/Config.in | 33 +++ > libs/gnutls/Makefile | 62 > +++

Re: [OpenWrt-Devel] [PATCH] Fix sysntpd to use multiple servers.

2014-05-07 Thread Ben Kibbey
On Wed, May 07, 2014 at 04:28:00PM +0200, Jo-Philipp Wich wrote: > Hi. > > Can you elaborate on this fix? > > The current implementation works fine here as well and I cannot spot a > functional difference with your change. > > ~ Jow It adds a -p before each server specification. If run with -d

[OpenWrt-Devel] [PATCH 1/3] Made several parts of gnutls configurable and updated to 3.2.14.

2014-05-07 Thread Nikos Mavrogiannopoulos
Signed-off-by: Nikos Mavrogiannopoulos --- libs/gnutls/Config.in | 33 +++ libs/gnutls/Makefile | 62 ++- 2 files changed, 89 insertions(+), 6 deletions(-) create mode 100644 libs/gnutls/Config.in diff --git a/libs/gnutls

[OpenWrt-Devel] [PATCH 3/3] Allow gnutls to be compiled using nettle-mini.

2014-05-07 Thread Nikos Mavrogiannopoulos
Signed-off-by: Nikos Mavrogiannopoulos --- libs/gnutls/Makefile | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libs/gnutls/Makefile b/libs/gnutls/Makefile index c2a010a..997532b 100644 --- a/libs/gnutls/Makefile +++ b/libs/gnutls/Makefile @@ -75,7 +75,7 @@ endef define

Re: [OpenWrt-Devel] [PATCH 1/3] Made several parts of gnutls configurable and updated to 3.2.14.

2014-05-07 Thread Nikos Mavrogiannopoulos
On Wed, 2014-05-07 at 14:44 -0700, Florian Fainelli wrote: > Could you resubmit these patches with your Signed-off-by tag? They > look good otherwise, thank you! Thanks for checking them. Just resubmitted. regards, Nikos ___ openwrt-devel mailing list

Re: [OpenWrt-Devel] [PATCH 1/3] Made several parts of gnutls configurable and updated to 3.2.14.

2014-05-07 Thread Florian Fainelli
2014-05-07 14:56 GMT-07:00 Nikos Mavrogiannopoulos : > > Signed-off-by: Nikos Mavrogiannopoulos Applied in r40721, had to disable cryptodev since it was missing a bunch of definitions to build. thanks! -- Florian ___ openwrt-devel mailing list openwrt

Re: [OpenWrt-Devel] [PATCH 3/3] Allow gnutls to be compiled using nettle-mini.

2014-05-07 Thread Florian Fainelli
2014-05-07 14:56 GMT-07:00 Nikos Mavrogiannopoulos : > > Signed-off-by: Nikos Mavrogiannopoulos Applied in r40723, thanks! -- Florian ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/ope

[OpenWrt-Devel] [PATCH v4] ppp: add new protocol PPPoSSH.

2014-05-07 Thread Yousong Zhou
This patch adds protocol support for PPP over SSH. The protocol name is 'pppossh' with the following options. - server, required, SSH server name. - port, SSH server port. - sshuser, required, SSH login username. - identity, list of client private key files. ~/.ssh/id_{rsa,dsa} will be us

Re: [OpenWrt-Devel] [PATCH] Fix sysntpd to use multiple servers.

2014-05-07 Thread Weedy
On Wed, May 7, 2014 at 5:46 PM, Ben Kibbey wrote: > On Wed, May 07, 2014 at 04:28:00PM +0200, Jo-Philipp Wich wrote: > > Hi. > > > > Can you elaborate on this fix? > > > > The current implementation works fine here as well and I cannot spot a > > functional difference with your change. > > > > ~