Skip to content

Commit 092f1a5

Browse files
committed
Update README.md
[ci skip]
1 parent 791db40 commit 092f1a5

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ In fact for now it provide `lcurl` API directly and needed to redesign.<br/>
2424

2525
##
2626

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.)
3737

3838
## Installation
3939

0 commit comments

Comments
 (0)