aboutsummaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* add assertion to guard against bad behavior described in #7196, also ↵Christian Grothoff2023-02-08
| | | | document that after suspending one must return MHD_YES
* Tests and examples: added rule to (re-)build libmicrohttpd.laEvgeny Grin (Karlson2k)2022-11-06
|
* configure: do not pass AM_TESTS_ENVIRONMENT directlyEvgeny Grin (Karlson2k)2022-10-30
|
* Some readability improvementsEvgeny Grin (Karlson2k)2022-09-28
|
* -fix typosChristian Grothoff2022-06-26
|
* Removed extra "Upgrade" token in Connection reply header in tests and examplesEvgeny Grin (Karlson2k)2022-06-15
| | | | | MHD automatically adds "Upgrade" header, no need to add it for the second time.
* libmicrohttpd.texi: updated list of used external data typesEvgeny Grin (Karlson2k)2022-06-13
|
* Updated documentation for the new Basic Authorization APIEvgeny Grin (Karlson2k)2022-06-13
|
* Updated examples to use new API for Basic AuthorizationEvgeny Grin (Karlson2k)2022-06-13
|
* doc/examples: fixed compiler warningsEvgeny Grin (Karlson2k)2022-06-02
|
* examples: marked non-global variables as 'static'Evgeny Grin (Karlson2k)2022-06-02
|
* src/examples: muted compiler warningsEvgeny Grin (Karlson2k)2022-06-01
|
* Replaced MHD_RESPMEM_PERSISTENT usage in examples and codeEvgeny Grin (Karlson2k)2022-05-14
| | | | New functions do not produce compiler warnings.
* Replaced MHD_RESPMEM_MUST_FREE with more portable solution in examplesEvgeny Grin (Karlson2k)2022-05-14
|
* libmicrohttpd.texi: fixed formatting in 15ea1533a8bb7c9d8eafb25defe4aeba6fa3f7f2Evgeny Grin (Karlson2k)2022-05-13
|
* Updated .texi with the new digest auth functionsEvgeny Grin (Karlson2k)2022-05-13
|
* Replaced calls of MHD_get_timeout() in tests and examplesEvgeny Grin (Karlson2k)2022-04-28
| | | | | The calls were replaced with the calls of the new functions. Completely removed the usage of MHD_UNSIGNED_LONG_LONG.
* doc/examples: avoid usage of unportable functionsEvgeny Grin (Karlson2k)2022-04-23
|
* doc/examples: improved formattingEvgeny Grin (Karlson2k)2022-04-23
|
* doc/examples: do not use non-literals for printf()Evgeny Grin (Karlson2k)2022-04-23
|
* Fixed old-style functions definitionsEvgeny Grin (Karlson2k)2022-04-23
|
* doc/examples: Fixed drop of 'const' qualifiersEvgeny Grin (Karlson2k)2022-04-19
|
* Updated docs, test, and example to use correct digest auth APIEvgeny Grin (Karlson2k)2022-01-27
|
* Fixed early response with digest auth in tests, examples, and documentationEvgeny Grin (Karlson2k)2022-01-18
|
* Added more workarounds for uncrustify bugsEvgeny Grin (Karlson2k)2022-01-18
|
* largepost: fixed code styleEvgeny Grin (Karlson2k)2022-01-18
|
* Renamed 'con_cls' -> 'req_cls' for access handler callbackEvgeny Grin (Karlson2k)2022-01-18
| | | | | | | | The argument is actually request-specific, not connection specific. The name was confusing. Fixed related documentation and clarified usage. Also fixed code where argument named 'unused' was actually used.
* doc/examples/Makefile: fixed missing fileEvgeny Grin (Karlson2k)2022-01-09
|
* doc: fixed missing 'websocket.inc' in dist filesEvgeny Grin (Karlson2k)2022-01-09
|
* Doxygen: changed description of make targetsEvgeny Grin (Karlson2k)2022-01-06
|
* Fixed compiler warning in examplesEvgeny Grin (Karlson2k)2022-01-06
|
* Autotools refactoring: better follow GNU coding standardsEvgeny Grin (Karlson2k)2022-01-06
| | | | | | | | Never override CFLAGS, CPPFLAGS, and LDFLAGS in 'configure'. Let user override compile setting as make-time almost in the same way like at configure-time. Removed some redundant compile settings.
* doc/Makefile: fixed *-local rulesEvgeny Grin (Karlson2k)2022-01-05
|
* doc/Makefile: reordered targets and dependenciesEvgeny Grin (Karlson2k)2022-01-05
|
* doc/Makefile: added phony target to force update timestampEvgeny Grin (Karlson2k)2022-01-05
|
* test and examples: check socket control functions resultsEvgeny Grin (Karlson2k)2021-11-21
|
* websockets: fixed code styleEvgeny Grin (Karlson2k)2021-10-31
|
* websocket updateDavid Gausmann2021-10-31
| | | | | | | | | | | | | | | | - added API documentation to libmicrohttpd.texi - added websocket tutorial chapter to libmicrohttpd-tutorial and an much easier example for the tutorial - added additional helper functions to ease the HTTP websocket handshake - the code can now be compiled on Linux without errors - changed sha1.c and sha1.h to the files provided by Evgeny (I replaced those files in src/microhttpd_ws/ with the files from src/microhttpd/ - maybe there is a smarter way...?) - removed dependency for "htons" and "htonl" (these functions are now implemented in MHD_websocket.c; no need for OS-dependent files anymore) - added an additional test script for testing of the library with any webbrowser (for manual practice test) - several bugfixes - parameters renamed - special things clarified (fragmentation, RNG for client mode) The new version of the API is at some points incompatible with the old version, but since it was in an experimental phase and it didn't compile on Linux, I guess this shouldn't bother anyone. From my point of view, I am now finished with the library and it could go out of experimental.
* tlsauthentication.c: better fix for compiler warningEvgeny Grin (Karlson2k)2021-08-25
|
* tlsauthentication.c: inelegant mute of compiler warningEvgeny Grin (Karlson2k)2021-08-25
|
* -typoChristian Grothoff2021-08-04
|
* introduce new MHD_CONNECTION_INFO_HTTP_STATUSChristian Grothoff2021-08-04
|
* fix typoChristian Grothoff2021-03-09
|
* fix exampleChristian Grothoff2021-03-04
|
* improve example on client cert validation, as suggested by Folkert van HeusdenChristian Grothoff2021-03-02
|
* -misc style fixes, no semantic changesChristian Grothoff2021-02-26
|
* Implemented new function MHD_create_response_from_iovec()Evgeny Grin (Karlson2k)2021-02-24
| | | | | | | Implemented the new function, related framework, and tests for iovec-based responses. The implementation is based on the patch provided by Lawrence Sebald and Damon N. Earp from NASA.
* expand tutorial on connection phases, thanks to Igor for pointing out that ↵Christian Grothoff2021-02-02
| | | | the text was incomplete
* document cross-compile to Android, fixes #4913Christian Grothoff2021-01-30
|
* Fixed build with --disable-bauthEvgeny Grin (Karlson2k)2020-12-27
|