4 Commits

Author SHA1 Message Date
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