diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-01-13 21:03:28 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-01-13 21:03:28 +0000 |
commit | 4fec63df9e4a52ae8bb21b4cac87728ce073554f (patch) | |
tree | e2edb5dc5a8da8aa545a0ef06285ff32f91fe176 /libs | |
parent | 7023f3322379b176deeaa1a72a0e188fb9b1f202 (diff) |
libs/core: remove now obsolete uint() wrapper in network model
Diffstat (limited to 'libs')
-rw-r--r-- | libs/core/luasrc/model/network.lua | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/libs/core/luasrc/model/network.lua b/libs/core/luasrc/model/network.lua index 56f1751f8..09a58d742 100644 --- a/libs/core/luasrc/model/network.lua +++ b/libs/core/luasrc/model/network.lua @@ -1164,31 +1164,24 @@ function interface.is_bridgeport(self) return self.dev and self.dev.bridge and true or false end -local function uint(x) - if x then - return (x < 0) and ((2^32) + x) or x - end - return 0 -end - function interface.tx_bytes(self) local stat = self:_ubus("statistics") - return stat and uint(stat.tx_bytes) or 0 + return stat and stat.tx_bytes or 0 end function interface.rx_bytes(self) local stat = self:_ubus("statistics") - return stat and uint(stat.rx_bytes) or 0 + return stat and stat.rx_bytes or 0 end function interface.tx_packets(self) local stat = self:_ubus("statistics") - return stat and uint(stat.tx_packets) or 0 + return stat and stat.tx_packets or 0 end function interface.rx_packets(self) local stat = self:_ubus("statistics") - return stat and uint(stat.rx_packets) or 0 + return stat and stat.rx_packets or 0 end function interface.get_network(self) |