mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
Dump file content as hex in handle_form example
This commit is contained in:
parent
2cd66c159d
commit
8dea7de0c4
@ -37,7 +37,7 @@ bdata = table.concat(stringtab)
|
|||||||
stringtab = nil
|
stringtab = nil
|
||||||
|
|
||||||
-- Get the boundary string.
|
-- Get the boundary string.
|
||||||
bs = "--" .. ((mg.request_info.content_type):match("boundary=(.*)"));
|
bs = "--" .. ((mg.request_info.content_type):upper():match("BOUNDARY=(.*)"));
|
||||||
|
|
||||||
-- The POST data has to start with the boundary string.
|
-- The POST data has to start with the boundary string.
|
||||||
-- Check this and remove the starting boundary.
|
-- Check this and remove the starting boundary.
|
||||||
@ -79,15 +79,41 @@ while #bdata>4 do
|
|||||||
if form_field_name then
|
if form_field_name then
|
||||||
mg.write("Field name: " .. form_field_name .. "\r\n")
|
mg.write("Field name: " .. form_field_name .. "\r\n")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local len = #form_field_value
|
||||||
|
mg.write("Field data length: " .. len .. "\r\n")
|
||||||
|
|
||||||
if file_name then
|
if file_name then
|
||||||
mg.write("File name: " .. file_name .. "\r\n")
|
mg.write("File name: " .. file_name .. "\r\n")
|
||||||
end
|
mg.write("File content:\r\n")
|
||||||
local len = #form_field_value
|
local maxlen
|
||||||
if len<50 then
|
if len>320 then maxlen=320 else maxlen=len end
|
||||||
mg.write("Field value: " .. form_field_value .. "\r\n")
|
|
||||||
|
for l=0,maxlen,16 do
|
||||||
|
for m=1,16 do
|
||||||
|
local b = form_field_value:byte(l+m)
|
||||||
|
if (b) then
|
||||||
|
mg.write(string.format("%02x ", b))
|
||||||
|
else
|
||||||
|
mg.write(" ")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
mg.write(" - " .. form_field_value:sub(l+1,l+16):gsub("[%c%z%s]", " ") .. "\r\n")
|
||||||
|
end
|
||||||
|
if maxlen<len then
|
||||||
|
mg.write(string.format("... (+ %u bytes)\r\n", len-maxlen))
|
||||||
|
end
|
||||||
|
|
||||||
else
|
else
|
||||||
mg.write("Field value: " .. form_field_value:sub(1, 40) .. " .. (" .. len .. " bytes)\r\n")
|
-- not a file
|
||||||
|
if len<50 then
|
||||||
|
mg.write("Field value: " .. form_field_value .. "\r\n")
|
||||||
|
else
|
||||||
|
mg.write("Field value: " .. form_field_value:sub(1, 40) .. " .. (" .. len .. " bytes)\r\n")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
mg.write("\r\n")
|
mg.write("\r\n")
|
||||||
fields = fields + 1
|
fields = fields + 1
|
||||||
datasize = datasize + len
|
datasize = datasize + len
|
||||||
|
Loading…
x
Reference in New Issue
Block a user