luajit-request
luajit-request copied to clipboard
Simple HTTPS for LuaJIT!
The libcurl API is not very nice to bind to, I should rewrite the library targeting a new HTTP backend if I can.
curl -v -X POST --data-binary @bin_data http://xxx.com It's OK. But binary data always return header "Content-length:0" by wireshark curl.send('http://xxx.com', { method='POST', data=binary data} ) curl.curl_easy_setopt(handle, curl.CURLOPT_POSTFIELDSIZE, #args.data) still not work....
I got a request about this via email, stating: "I'm using luajit-request in order to get a lot of pages, so eventually it ends up failing because of too many...
I don't use this library very often, so I don't have a very good base set of tests to run against it to ensure I haven't broken anything, or even...