Skip to content

Commit

Permalink
luci-proto-ppp: align keepalive defaults with current OpenWrt
Browse files Browse the repository at this point in the history
Disabling LCP echos by *not* setting "option keepalive" was broken in
OpenWrt since https://dev.archive.openwrt.org/ticket/2373.html so setting
"0" in LuCI had the effect of reverting back to "5, 1" while the help
suggested otherwise.

Support for "keepalive 0" was fixed with https://git.openwrt.org/555c59230
so align LuCI now to emit "option keepalive 0" instead of removing the
option when entering "0" in the gui.

Fixes openwrt#2112
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
  • Loading branch information
jow- authored and kristrev committed Sep 9, 2018
1 parent f87a2a7 commit fccb5f8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Expand Up @@ -103,7 +103,7 @@ function keepalive_interval.write(self, section, value)
if f > 0 then
m:set(section, "keepalive", "%d %d" %{ f, i })
else
m:del(section, "keepalive")
m:set(section, "keepalive", "0")
end
end

Expand Down
Expand Up @@ -109,7 +109,7 @@ function keepalive_interval.write(self, section, value)
if f > 0 then
m:set(section, "keepalive", "%d %d" %{ f, i })
else
m:del(section, "keepalive")
m:set(section, "keepalive", "0")
end
end

Expand Down
Expand Up @@ -103,7 +103,7 @@ function keepalive_interval.write(self, section, value)
if f > 0 then
m:set(section, "keepalive", "%d %d" %{ f, i })
else
m:del(section, "keepalive")
m:set(section, "keepalive", "0")
end
end

Expand Down
Expand Up @@ -105,7 +105,7 @@ function keepalive_interval.write(self, section, value)
if f > 0 then
m:set(section, "keepalive", "%d %d" %{ f, i })
else
m:del(section, "keepalive")
m:set(section, "keepalive", "0")
end
end

Expand Down
Expand Up @@ -82,7 +82,7 @@ function keepalive_interval.write(self, section, value)
if f > 0 then
m:set(section, "keepalive", "%d %d" %{ f, i })
else
m:del(section, "keepalive")
m:set(section, "keepalive", "0")
end
end

Expand Down

0 comments on commit fccb5f8

Please sign in to comment.