-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
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.
data need to convert type to curl_easy_setopt?