libs/sys: workaround for Lua number overflow in ipv6 route metrics
authorJo-Philipp Wich <jow@openwrt.org>
Mon, 8 Mar 2010 00:49:39 +0000 (00:49 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Mon, 8 Mar 2010 00:49:39 +0000 (00:49 +0000)
libs/sys/luasrc/sys.lua

index d9fe5ab..f30a2b6 100644 (file)
@@ -463,7 +463,11 @@ function net.routes6(callback)
                                refcount = tonumber(refcnt, 16),
                                usecount = tonumber(usecnt, 16),
                                flags    = tonumber(flags, 16),
-                               device   = dev
+                               device   = dev,
+
+                               -- lua number is too small for storing the metric
+                               -- add a metric_raw field with the original content
+                               metric_raw = metric
                        }
 
                        if callback then