Alexey Melnichuk
1b88ec42b8
Fix. multi:info_read correctly remove easy handle.
2014-09-11 14:39:24 +05:00
Alexey Melnichuk
b2e6bcae4e
Fix. add_handle/remove_handle on cURLv3
...
Add. Examples for cURLv3
2014-09-11 12:50:48 +05:00
Alexey Melnichuk
56a47e12d0
Fix. Remove easy handle from multi handle
2014-09-11 12:27:29 +05:00
Alexey Melnichuk
4a7901fc8c
Add. libcurl 7.38.0 constants
2014-09-10 16:44:10 +05:00
Alexey Melnichuk
bf4b8b0b0b
Change. multi iterator returns response code as data for done
row
2014-09-10 15:20:58 +05:00
Alexey Melnichuk
8d3c696c4c
Implement iterator multi.iperform and method easy.perform for easy.
...
```Lua
local cURL = require("lcurl")
c1 = cURL.easy{url = "http://www.lua.org/ "}
c2 = cURL.easy{url ="http://luajit.org/ "}
m = cURL.multi()
:add_handle(c1)
:add_handle(c2)
for a,b,c in m:iperform() do ... end
```
2014-09-10 14:00:24 +05:00
Alexey Melnichuk
71c0deb903
Add. cURL.safe
module.
2014-09-10 13:13:44 +05:00