libs/web: Made luci.http.write a sink
This commit is contained in:
parent
9fd9401d9b
commit
9b1ef9e2b1
1 changed files with 22 additions and 13 deletions
|
@ -169,10 +169,17 @@ function status(code, message)
|
||||||
coroutine.yield(1, code, message)
|
coroutine.yield(1, code, message)
|
||||||
end
|
end
|
||||||
|
|
||||||
function write(content)
|
function write(content, src_err)
|
||||||
if not content or #content == 0 then
|
if not content then
|
||||||
return
|
if src_err then
|
||||||
|
error(src_err)
|
||||||
|
else
|
||||||
|
close()
|
||||||
end
|
end
|
||||||
|
return true
|
||||||
|
elseif #content == 0 then
|
||||||
|
return true
|
||||||
|
else
|
||||||
if not context.eoh then
|
if not context.eoh then
|
||||||
if not context.status then
|
if not context.status then
|
||||||
status()
|
status()
|
||||||
|
@ -185,6 +192,8 @@ function write(content)
|
||||||
coroutine.yield(3)
|
coroutine.yield(3)
|
||||||
end
|
end
|
||||||
coroutine.yield(4, content)
|
coroutine.yield(4, content)
|
||||||
|
return true
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function redirect(url)
|
function redirect(url)
|
||||||
|
|
Loading…
Reference in a new issue