Update doc.

master
Alexey Melnichuk 2014-12-22 14:18:49 +04:00
parent 273212fb93
commit 010a54eb5a
1 changed files with 17 additions and 0 deletions

View File

@ -135,6 +135,17 @@ do
-- e:perfom{writefunction = assert(io.open("fname.txt", "w+b"))}
function perfom() end
--- User data.
--
-- Please use this field to associate any data with curl handle.
--
-- @field data
--
-- @usage
-- f = io.open("lua.org.download", "w+")
-- e = curl.easy{url = "http://lua.org", writefunction = f}
-- e.data = f
end
--- Muli curl object
@ -155,4 +166,10 @@ do
-- for data, type, easy in m:iperform() do ... end
function iperform() end
--- User data.
--
-- Please use this field to associate any data with curl handle.
--
-- @field data
end