Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
99856ebf
Commit
99856ebf
authored
9 years ago
by
Felix Fietkau
Browse files
Options
Downloads
Patches
Plain Diff
6in4: use uclient-fetch instead of wget/curl
Signed-off-by:
Felix Fietkau
<
nbd@openwrt.org
>
SVN-Revision: 48391
parent
8353ed85
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
package/network/ipv6/6in4/Makefile
+2
-2
2 additions, 2 deletions
package/network/ipv6/6in4/Makefile
package/network/ipv6/6in4/files/6in4.sh
+5
-22
5 additions, 22 deletions
package/network/ipv6/6in4/files/6in4.sh
with
7 additions
and
24 deletions
package/network/ipv6/6in4/Makefile
+
2
−
2
View file @
99856ebf
...
...
@@ -8,7 +8,7 @@
include
$(TOPDIR)/rules.mk
PKG_NAME
:=
6in4
PKG_VERSION
:=
2
2
PKG_VERSION
:=
2
3
PKG_RELEASE
:=
1
PKG_LICENSE
:=
GPL-2.0
...
...
@@ -17,7 +17,7 @@ include $(INCLUDE_DIR)/package.mk
define
Package/6in4
SECTION
:=
net
CATEGORY
:=
Network
DEPENDS
:=
@IPV6 +kmod-sit
DEPENDS
:=
@IPV6 +kmod-sit
+uclient-fetch
TITLE
:=
IPv6-in-IPv4 configuration support
MAINTAINER
:=
Jo-Philipp Wich <xm@subsignal.org>
PKGARCH
:=
all
...
...
This diff is collapsed.
Click to expand it.
package/network/ipv6/6in4/files/6in4.sh
+
5
−
22
View file @
99856ebf
...
...
@@ -82,40 +82,23 @@ proto_6in4_setup() {
[
-n
"
$updatekey
"
]
&&
password
=
"
$updatekey
"
local
http
=
"http"
local
urlget
=
"
wget
"
local
urlget
=
"
uclient-fetch
"
local
urlget_opts
=
"-qO-"
local
ca_path
=
"
${
SSL_CERT_DIR
-/etc/ssl/certs
}
"
if
[
-n
"
$(
which curl
)
"
]
;
then
urlget
=
"curl"
urlget_opts
=
"-s -S"
if
curl
-V
|
grep
"Protocols:"
|
grep
-qF
"https"
;
then
http
=
"https"
urlget_opts
=
"
$urlget_opts
--capath
$ca_path
"
fi
fi
if
[
"
$http
"
=
"http"
]
&&
wget
--version
2>&1 |
grep
-qF
"+https"
;
then
urlget
=
"wget"
urlget_opts
=
"-qO- --ca-directory=
$ca_path
"
http
=
"https"
fi
[
-f
/lib/libustream-ssl.so
]
&&
http
=
https
[
"
$http
"
=
"https"
-a
-z
"
$(
find
$ca_path
-name
"*.0"
2>/dev/null
)
"
]
&&
{
if
[
"
$urlget
"
=
"curl"
]
;
then
urlget_opts
=
"
$urlget_opts
-k"
else
urlget_opts
=
"
$urlget_opts
--no-check-certificate"
fi
urlget_opts
=
"
$urlget_opts
--no-check-certificate"
}
local
url
=
"
$http
://ipv4.tunnelbroker.net/nic/update?
username=
$username
&password=
$password
&
hostname=
$tunnelid
"
local
url
=
"
$http
://ipv4.tunnelbroker.net/nic/update?hostname=
$tunnelid
"
local
try
=
0
local
max
=
3
(
set
-o
pipefail
while
[
$((
++
try
))
-le
$max
]
;
do
if
proto_6in4_update
$urlget
$urlget_opts
"
$url
"
2>&1 |
\
if
proto_6in4_update
$urlget
$urlget_opts
--user
=
"
$username
"
--password
=
"
$password
"
"
$url
"
2>&1 |
\
sed
-e
's,^Killed$,timeout,'
-e
"s,^,update
$try
/
$max
: ,"
|
\
logger
-t
"
$link
"
;
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment