You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,16 +24,16 @@ In fact for now it provide `lcurl` API directly and needed to redesign.<br/>
24
24
25
25
##
26
26
27
-
Lua-cURLv2 binding has several problems:
28
-
29
-
* it can not return error codes but just raise Lua errors
30
-
* it raise Lua error from callback that may result resource leak in libcurl
31
-
* it does not provide building multipart/formdata explicitly
32
-
* it has memory leak when send multipart/formdata
33
-
* it does not save string for curl options that may result crush in libcurl
34
-
* there no way to get result for operations in multi interface (e.g. if one of easy operation fail you can not get result code/error message)
35
-
* you can not use your own callback function to perform operation with multi interface
36
-
* you can not pass your context to callback functions
27
+
Original Lua-cURLv2 binding has several problems:
28
+
29
+
* it can not return error codes but just raise Lua errors (Fixed. use `cURL.safe` module)
30
+
* it raise Lua error from callback that may result resource leak in libcurl (Fixed.)
31
+
* it does not provide building multipart/formdata explicitly (Fixed.)
32
+
* it has memory leak when send multipart/formdata (Fixed.)
33
+
* it does not save string for curl options that may result crush in libcurl (Fixed.)
34
+
* there no way to get result for operations in multi interface (e.g. if one of easy operation fail you can not get result code/error message) (Fixed. But it does not very handy interface.)
35
+
* you can not use your own callback function to perform operation with multi interface (Could not be fixed without changing API.)
36
+
* you can not pass your context to callback functions (Could not be fixed without changing API.)
0 commit comments