aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/Makefile.am
Commit message (Collapse)AuthorAge
* test-suite: sorted and fixed build flagsEvgeny Grin (Karlson2k)2022-09-27
|
* Implemented support for hash calculation by GnuTLS lib functionsEvgeny Grin (Karlson2k)2022-09-25
|
* digestauth: added support for SHA-512/256, made MD5 and SHA-256 optionalEvgeny Grin (Karlson2k)2022-09-11
| | | | | Give more flexibility for custom builds: MD5, SHA-256 and SHA-512/256 may be disabled individually.
* Implemented SHA-512/256 hashing supportEvgeny Grin (Karlson2k)2022-09-11
| | | | | | The full implementation, with support hashing of more than 2 EiB (exbibytes), as described by specification. Includes additional code path for more compact code.
* Added tests for userdigest and userhash calculationsEvgeny Grin (Karlson2k)2022-09-04
|
* digestauth: keep results of algo and QOP parsing, renamed public struct memberEvgeny Grin (Karlson2k)2022-08-25
|
* Added tests for hex <-> binary functionsEvgeny Grin (Karlson2k)2022-07-19
|
* Added tests for percent-decoding functionsEvgeny Grin (Karlson2k)2022-07-18
|
* test_postprocessor_md: removed include of .c file, fixed extra long linesEvgeny Grin (Karlson2k)2022-06-13
|
* postprocessor.h: added new internal headerEvgeny Grin (Karlson2k)2022-06-13
|
* Minor improvement for POTFILES.in buildingEvgeny Grin (Karlson2k)2022-06-10
|
* Makefiles: automatically build POTFILES.inEvgeny Grin (Karlson2k)2022-06-10
| | | | | Added very simple automated solution to rebuild POTFILES.in when needed and use only library files for it.
* Removed Public Domain base64 decoding filesEvgeny Grin (Karlson2k)2022-06-09
|
* test_str_base64: added test for base64 decodingEvgeny Grin (Karlson2k)2022-06-09
|
* Excluded build on the new string functions when they are unusedEvgeny Grin (Karlson2k)2022-06-06
|
* test_str_quote: added new testEvgeny Grin (Karlson2k)2022-06-06
|
* test_auth_parse: added new testEvgeny Grin (Karlson2k)2022-06-05
|
* authentication: reworked header parsingEvgeny Grin (Karlson2k)2022-05-31
| | | | | | | | | Added single function to parse all enabled authentication schemes header strings. The parsing result is cached and reused thus avoiding repetitive header parsing. The new function correctly "unquotes" values (backslashes are removed) as required by RFC.
* Created digestauth.h headerEvgeny Grin (Karlson2k)2022-05-20
|
* Created basicauth.h headerEvgeny Grin (Karlson2k)2022-05-20
|
* set_test_panic: added new testEvgeny Grin (Karlson2k)2022-04-25
|
* Makefile: fixed dependency on libmicrohttpd.laEvgeny Grin (Karlson2k)2022-04-16
|
* Makefile: fixed: user LDFLAGS was not honoredEvgeny Grin (Karlson2k)2022-04-13
|
* Moved libtool-specific flags to MakefileEvgeny Grin (Karlson2k)2022-04-03
|
* Moved mhd_panic() and helpers to separate .c/.h filesEvgeny Grin (Karlson2k)2022-01-25
|
* 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.
* Makefile: removed duplicated recipe for W32Evgeny Grin (Karlson2k)2021-12-20
|
* Additional fix for old gnutls versionsEvgeny Grin (Karlson2k)2021-12-16
|
* Makefile: support silent rules for W32 RCEvgeny Grin (Karlson2k)2021-12-14
|
* Makefile: support silent rules for static libEvgeny Grin (Karlson2k)2021-12-14
|
* Correction for de383203d4d7921bf331510bc898ab88c5844731Evgeny Grin (Karlson2k)2021-12-14
|
* Reworked dlltool supported.Evgeny Grin (Karlson2k)2021-12-14
| | | | | | | | | | * Added support for weakened oversimplified half-broken llvm-dlltool * Streamlined makefile receipts for W32 .dll and related files * Added support for verbose/silent makefile rules * Removed redundant printing from makefile * Added makefile receipts for proper generation of all required files * Silenced MS lib warning * Silenced MS lib invocation
* test_client_put_*: new testsEvgeny Grin (Karlson2k)2021-11-21
| | | | | Implemented simple emulation of HTTP client to test various MHD aspects and thorough checking of all MHD callbacks.
* src/microhttpd/Makefile.am: removed empty linesEvgeny Grin (Karlson2k)2021-10-30
|
* src/microhttpd/Makefile: cosmeticsEvgeny Grin (Karlson2k)2021-10-26
|
* Makefile fixed for dist* targetsEvgeny Grin (Karlson2k)2021-07-28
|
* Added internal functions for printing decimal and hex numbersEvgeny Grin (Karlson2k)2021-07-27
|
* response: process "Connection" header in a special mannerEvgeny Grin (Karlson2k)2021-07-05
|
* Added MHD_str_remove_tokens_caseless_() functionEvgeny Grin (Karlson2k)2021-07-05
|
* Added MHD_str_remove_token_caseless_() functionEvgeny Grin (Karlson2k)2021-07-05
| | | | | Function removes specified token from the input string and normalizes list of tokens.
* Implemented basement to work with unaligned dataEvgeny Grin (Karlson2k)2021-05-18
|
* Implemented SHA-1 calculationEvgeny Grin (Karlson2k)2021-05-16
|
* verbatim import of David Gausmann's websocket extension; tests do not yet ↵Christian Grothoff2021-04-26
| | | | pass, only enabled with --enable-experimental
* test_postprocessor_md: fixed wrong CPPFLAGSEvgeny Grin (Karlson2k)2020-12-26
|
* makefiles: removed .NOTPARALLEL: from main makefilesEvgeny Grin (Karlson2k)2020-09-24
| | | | | | | Library itself, main tests and libcurl test could be build and performed in parallel due to MHD_FEATURE_AUTODETECT_BIND_PORT feature testzzuf tests still need to be updated for support of parallel testing
* test_upgrade_large.c: used portable way of inter-thread communicationEvgeny Grin (Karlson2k)2020-09-21
|
* add additional PP test from MDChristian Grothoff2020-06-10
|
* mark build as non-parallel due to port conflicts (#6117)Christian Grothoff2020-03-14
|
* Merge remote-tracking branch 'origin/master' into dev/ng0/gsoc2019ng02019-08-01
|\
| * indentation fixes, adding test_upgrade_large.c test for issue reported by VietChristian Grothoff2019-07-29
| |