Commit 39ddd4de authored by Pierre Ynard's avatar Pierre Ynard

lua: cosmetics

parent 525e092d
...@@ -115,7 +115,8 @@ function host() ...@@ -115,7 +115,8 @@ function host()
end end
local function write_console( client, data ) local function write_console( client, data )
-- FIXME: this method shouldn't be needed. vlc.net.write should just work -- FIXME: this method shouldn't be needed. vlc.net.write should
-- just work
io.write(data or client.buffer) io.write(data or client.buffer)
return string.len(data or client.buffer) return string.len(data or client.buffer)
end end
...@@ -164,7 +165,7 @@ function host() ...@@ -164,7 +165,7 @@ function host()
if t == client_type.net or t == client_type.telnet then if t == client_type.net or t == client_type.telnet then
w = send w = send
r = recv r = recv
else if t == client_type.stdio or t == client_type.fifo then elseif t == client_type.stdio or t == client_type.fifo then
if vlc.win and t == client_type.stdio then if vlc.win and t == client_type.stdio then
vlc.win.console_init() vlc.win.console_init()
w = write_console w = write_console
...@@ -175,7 +176,7 @@ function host() ...@@ -175,7 +176,7 @@ function host()
end end
else else
error("Unknown client type", t ) error("Unknown client type", t )
end end end
local client = { -- data local client = { -- data
rfd = fd, rfd = fd,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment