projects
/
project
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d3d750b
)
applications/luci-olsr: Save RAM while getting the default route, very good hint...
author
Manuel Munz
<freifunk@somakoma.de>
Sun, 2 Jan 2011 16:20:25 +0000
(16:20 +0000)
committer
Manuel Munz
<freifunk@somakoma.de>
Sun, 2 Jan 2011 16:20:25 +0000
(16:20 +0000)
applications/luci-olsr/luasrc/controller/olsr.lua
patch
|
blob
|
history
diff --git
a/applications/luci-olsr/luasrc/controller/olsr.lua
b/applications/luci-olsr/luasrc/controller/olsr.lua
index
688e491
..
f4d52c4
100644
(file)
--- a/
applications/luci-olsr/luasrc/controller/olsr.lua
+++ b/
applications/luci-olsr/luasrc/controller/olsr.lua
@@
-240,11
+240,7
@@
function fetch_txtinfo(otable)
if otable == "links" then
local route = {}
- for i, route in ipairs(luci.sys.net.routes()) do
- if route.dest:prefix() == 0 then
- defaultgw = route.gateway:string()
- end
- end
+ luci.sys.net.routes(function(r) if r.dest:prefix() == 0 then defaultgw = r.gateway:string() end end)
end
for i, tbl in ipairs(tables) do