net: remove redudant string.match call
This commit is contained in:
parent
1abb451d7a
commit
dda51b1e34
2
net.lua
2
net.lua
|
@ -33,8 +33,8 @@ local function worker(format)
|
|||
|
||||
for line in f:lines() do
|
||||
-- Match wmaster0 as well as rt0 (multiple leading spaces)
|
||||
if string.match(line, "^[%s]?[%s]?[%s]?[%s]?[%w]+:") then
|
||||
local name = string.match(line, "^[%s]?[%s]?[%s]?[%s]?([%w]+):")
|
||||
if name ~= nil then
|
||||
-- Received bytes, first value after the name
|
||||
local recv = tonumber(string.match(line, ":[%s]*([%d]+)"))
|
||||
-- Transmited bytes, 7 fields from end of the line
|
||||
|
|
Loading…
Reference in New Issue