1
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 15 hours ago. based on code collected about 15 hours ago.
Dec 22, 2024 — Dec 22, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Add option for static linking More... almost 9 years ago
Force address in a separate option More... about 9 years ago
Removed debian and redhat scripts. More... about 9 years ago
Removed debian and redhat scripts. More... about 9 years ago
Merge pull request #105 from rdiazmartin/v0.9.0_rdiazmartin More... about 9 years ago
fixed a problem that causes a memory leak. We are passing user, pass, and digested_user as char pointers by value which causes the original pointers be always null when they are going to be free in complete_request, now we pass them by reference and everything works fine More... about 9 years ago
Fix failing test More... over 9 years ago
Avoid double-call to copy constructor More... over 9 years ago
Experimenting on improving readability of http_response interface More... over 9 years ago
marking ws as started only after mhd is started More... over 9 years ago
Revert "Avoid memory leak due to user, pass and digested_user initialization" More... over 9 years ago
Avoid memory leak due to user, pass and digested_user initialization More... over 9 years ago
Merge pull request #99 from wlandry/debian_multiarch More... over 9 years ago
Update debian/ install files to handle the latest multiarch configuration More... over 9 years ago
Incremented version More... over 9 years ago
Fixed memory leak in http_response_ptr More... over 9 years ago
Merge pull request #95 from wlandry/large_POST More... over 9 years ago
Merge 'etr/master' into large_POST. More... over 9 years ago
Add a function to check whether the content of a request was too large. More... over 9 years ago
Merge pull request #96 from wlandry/Increase_POST_buffer More... over 9 years ago
Merge pull request #93 from wlandry/const_warning_fix More... over 9 years ago
Merge pull request #92 from pellucide/master More... over 9 years ago
Merge pull request #94 from wlandry/formdata More... over 9 years ago
Increase memory limit for POST processing to 32kb (same as #MHD_POOL_SIZE_DEFAULT) More... over 9 years ago
Properly limit the maximum size of the content and any processed posts or arguments. The default is unlimited. More... over 9 years ago
Add a way to limit size of uploads More... over 9 years ago
Handle POST's larger than 1024 bytes correctly. More... over 9 years ago
Parse POST's with format of formdata as well as urlencoded. More... over 9 years ago
Fix warnings about const results of functions More... over 9 years ago
For a POST parameter with a large value, libmicrohttpd will call webserver::post_iterator multiple times with chunnks of post data and successibe offsets. Currently, set_arg will overwrites the value. So after all the successive post_iterator calls, the value will be set to the last chunk. More... over 9 years ago