diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2016-01-19 23:25:38 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2016-01-19 23:25:38 +0000 |
commit | 939b944c6e2573787dedf69ce7b390fe4381388e (patch) | |
tree | 0c73ae5baeb723a25ba22d834465d1577563b7f9 /package/network | |
parent | f6e4badfe4146c732fd3a1529cf6b1b270ea6ea3 (diff) | |
download | mtk-20170518-939b944c6e2573787dedf69ce7b390fe4381388e.zip mtk-20170518-939b944c6e2573787dedf69ce7b390fe4381388e.tar.gz mtk-20170518-939b944c6e2573787dedf69ce7b390fe4381388e.tar.bz2 |
Revert "6in4: Corrected tunnelbroker tunnel update URL"
The auth change appears to break the endpoint update for most users and with
my local tests the old update url works just fine.
This reverts commit 99c03a88cb6fed0519efdfaac305794653a12542.
SVN-Revision: 48384
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/ipv6/6in4/Makefile | 2 | ||||
-rwxr-xr-x | package/network/ipv6/6in4/files/6in4.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/network/ipv6/6in4/Makefile b/package/network/ipv6/6in4/Makefile index b51b12d..9eca57a 100644 --- a/package/network/ipv6/6in4/Makefile +++ b/package/network/ipv6/6in4/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=6in4 -PKG_VERSION:=23 +PKG_VERSION:=22 PKG_RELEASE:=1 PKG_LICENSE:=GPL-2.0 diff --git a/package/network/ipv6/6in4/files/6in4.sh b/package/network/ipv6/6in4/files/6in4.sh index 05471db..59747a3 100755 --- a/package/network/ipv6/6in4/files/6in4.sh +++ b/package/network/ipv6/6in4/files/6in4.sh @@ -108,7 +108,7 @@ proto_6in4_setup() { fi } - local url="$http://$username:$password@ipv4.tunnelbroker.net/nic/update?hostname=$tunnelid" + local url="$http://ipv4.tunnelbroker.net/nic/update?username=$username&password=$password&hostname=$tunnelid" local try=0 local max=3 |