diff options
| author | Steven Barth | 2014-11-25 11:29:13 +0000 |
|---|---|---|
| committer | Steven Barth | 2014-11-25 11:29:13 +0000 |
| commit | e0ef57fa737b21abde5fbbbac5f26281b9409210 (patch) | |
| tree | db8001fb3fc6ea901c477c0fc0af11980e6e80c4 | |
| parent | 52c2996771939468e4922653367cc21aad6d1540 (diff) | |
| download | routing-e0ef57fa737b21abde5fbbbac5f26281b9409210.tar.gz | |
hnetd: update to latest version
Signed-off-by: Steven Barth <steven@midlink.org>
| -rw-r--r-- | hnetd/Makefile | 6 | ||||
| -rw-r--r-- | hnetd/files/hnet.config | 1 | ||||
| -rw-r--r-- | hnetd/files/hnetd.init | 3 |
3 files changed, 7 insertions, 3 deletions
diff --git a/hnetd/Makefile b/hnetd/Makefile index c4afb75..9f681bd 100644 --- a/hnetd/Makefile +++ b/hnetd/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2012-2013 OpenWrt.org +# Copyright (C) 2012-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -7,8 +7,8 @@ include $(TOPDIR)/rules.mk PKG_NAME:=hnetd -PKG_SOURCE_VERSION:=0c1d55d03983c726aaad010738236c2da64ca7df -PKG_VERSION:=2014-09-26-$(PKG_SOURCE_VERSION) +PKG_SOURCE_VERSION:=10b22c409f2ecadaaec45e068fd01c74ffe5c772 +PKG_VERSION:=2014-11-25-$(PKG_SOURCE_VERSION) PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git diff --git a/hnetd/files/hnet.config b/hnetd/files/hnet.config index e67e6eb..462f045 100644 --- a/hnetd/files/hnet.config +++ b/hnetd/files/hnet.config @@ -1,6 +1,7 @@ config pa pa # option ip4prefix 10.0.0.0/8 # option ulaprefix fd12:3456:789A::/48 +# option ulamode off # option persistent_store /etc/hnet-pa.store config sd sd diff --git a/hnetd/files/hnetd.init b/hnetd/files/hnetd.init index 8ee076a..3c5505d 100644 --- a/hnetd/files/hnetd.init +++ b/hnetd/files/hnetd.init @@ -57,6 +57,9 @@ start_service() { config_get val pa ulaprefix [ -n "$val" ] && procd_append_param command --ulaprefix $val + config_get val pa ulamode + [ -n "$val" ] && procd_append_param command --ulamode $val + config_get val sd router_name [ -n "$val" ] && procd_append_param command -n $val |