fix while boundary
parent
0c4363524d
commit
aa5a2fbdbd
8
waf.lua
8
waf.lua
|
@ -37,16 +37,16 @@ elseif PostCheck then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
ngx.req.append_body(data)
|
ngx.req.append_body(data)
|
||||||
|
gx.req.finish_body()
|
||||||
|
if body(data) then
|
||||||
|
return true
|
||||||
|
end
|
||||||
size = size + len(data)
|
size = size + len(data)
|
||||||
local less = content_length - size
|
local less = content_length - size
|
||||||
if less < chunk_size then
|
if less < chunk_size then
|
||||||
chunk_size = less
|
chunk_size = less
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
ngx.req.finish_body()
|
|
||||||
if body(data) then
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
else
|
else
|
||||||
ngx.req.read_body()
|
ngx.req.read_body()
|
||||||
local args = ngx.req.get_post_args()
|
local args = ngx.req.get_post_args()
|
||||||
|
|
Loading…
Reference in New Issue