ChangeLog 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498
  1. Sun Sep 3 12:23:18 AM CEST 2023
  2. Prevent queueing of responses if connection is not currently in the
  3. access handler callback (which was always not allowed per API spec,
  4. but is now met with an appropriate error response). Fixes #7757. -CG
  5. Web 29 Mar 2023 20:56:00 CEST
  6. Bumped version as the hotfix was released based on the separate branch. -EG
  7. Sun Feb 26 05:49:30 PM CET 2023
  8. Fix potential DoS vector in MHD_PostProcessor discovered
  9. by Gynvael Coldwind and Dejan Alvadzijevic (CVE-2023-27371). -CG
  10. Sun 26 Dec 2021 20:30:00 MSK
  11. Releasing GNU libmicrohttpd 0.9.75 -EG
  12. December 2021
  13. Fixed Makefile warning on MinGW.
  14. Fixed compiler warning on MinGW.
  15. Fixed "configure" portability (for NetBSD).
  16. MSVC project cosmetics.
  17. MSVC fixed project to fix linker warning.
  18. Fixed compiler warning on some platforms.
  19. Further improved test_client_put_stop to get stable results on all
  20. platforms.
  21. Added workaround for platforms (like OpenBSD) where system monotonic clocks
  22. may jump forward and back.
  23. Added more checks in test_large_put, increased timeout (was too small for
  24. this test). -EG
  25. Sun 19 Dec 2021 18:30:00 MSK
  26. Releasing GNU libmicrohttpd 0.9.74 -EG
  27. December 2021
  28. Fixed doxy for MHD_suspend_connection().
  29. Some code improvements for new test test_client_put_stop.
  30. Added special log message if thread creation failed due to system limits.
  31. Fully restructured new_connection_process_() to correctly handle errors,
  32. fixed missing decrement of number of daemon connections if any error
  33. encountered, fixed app notification of connection termination when app has
  34. not been notified about connection start, fixed (highly unlikely) reset of
  35. the list of connections if reached daemon's connections limit.
  36. configure: fixed some compiler warnings reported in config.log.
  37. Fixed tests on FreeBSD to support system-limited rate of RST packets and
  38. 'blackhole' system setting. -EG
  39. Fixed tests for libmagic to really use libmagic in examples. -CG
  40. Used tricks in code formatting to workaround uncrustify bugs.
  41. configure: improved compatibility with various shells.
  42. configure: added selective enable of sanitizers.
  43. Fixed compatibility with old GnuTLS versions.
  44. Fixed tests compatibility with old libcurl versions.
  45. Fixed busy-waiting in test_timeout (fixed CPU load spikes in the test).
  46. test_https_time_out: check rewritten, previously it is was no-op.
  47. test_upgrade{,_large}: fixed passing of socket value to GnuTLS on W32.
  48. Simplified Makefile for HTTPS tests.
  49. Added detection of old broken GnuTLS builds (on RHEL6 and clones) and
  50. disabled some tests broken with these builds.
  51. Muted compiler warnings with old libcurl versions.
  52. Reworked dlltool support: added support for weakened oversimplified
  53. half-broken llvm-dlltool
  54. Silenced MS lib tool warning and MS lib tool invocation.
  55. Added Makefiles rules for automatic regeneration of all required files if
  56. anything is missing.
  57. Added Makefile silent rules support for W32 RC and W32 static libs.
  58. Added local patches for autotools (mainly for libtool) to build MHD
  59. correctly on modern MinGW64/Clang.
  60. Updated HTTP headers macros from registry. -EG
  61. November 2021
  62. Clarified comments and doxy for MHD_str* and related tests.
  63. MHD_uint32_to_strx(): rewritten for readability and minor optimization,
  64. used indexes instead of pointers.
  65. Documented in doxy how to use MHD_AccessHandlerCallback.
  66. mhd_sockets: added more network error codes.
  67. W32 socket pair: set TCP_NODELAY to avoid unwanted buffering and delays.
  68. Additional doxy fixes in microhttpd.h.
  69. Fixed blocking sockets setting in tests and examples for W32.
  70. Added checks for fcntl() results in tests and examples.
  71. Added series of tests based on simple HTTP client implementation developed
  72. for testing of MHD.
  73. Renamed 'early_response' connection flag to 'discard_request' and reworked
  74. handling of connection's flags.
  75. Clarified request termination reasons doxy, fixed reporting of
  76. MHD_REQUEST_TERMINATED_READ_ERROR (previously this code was not really used
  77. in reporting).
  78. Enforce all libcurl tests exit code to be zero or one.
  79. Rewritten client upload processing: removed redundant checks, fixed
  80. skipping of chunk closure when not data is not received yet, fixed skipping
  81. of the last LF in termination chunk, handle correctly chunk sizes with more
  82. than 16 digits (leading zeros are valid according to HTTP RFC), fixed
  83. handling of CRCR, LFCR, LFLF, and bare CR as single line delimiters, report
  84. error when invalid chunk format is received without waiting to receive
  85. (possibly missing) end of the line, reply to the client with special error
  86. if chunk size is too large to be handled by MHD (>16 EiB).
  87. Added error reply if client used too large request payload (>16 EiB).
  88. Fixed return value for MHD_FEATURE_AUTOSUPPRESS_SIGPIPE on W32, now it
  89. returns MHD_YES as W32 does not need sigpipe suppression.
  90. configure: reordered and improved headers detection. Some headers require
  91. other headers to be included before, now configure supports it.
  92. Added missing ifdef guard for <stdbool.h>.
  93. mhd_sockets: reordered includes for better compatibility.
  94. Some code readability and formatting improvements. -EG
  95. October 2021
  96. Added test family test_toolarge to check correct handling of the buffers
  97. when the size of data is larger than free space.
  98. Fixed missing updated of read and write buffers sizes.
  99. Added detection and use of supported "noreturn" keyword for function
  100. declaration. It should help compiler and static analyser.
  101. Added support for leak sanitizer.
  102. Fixed analyser errors on W32.
  103. Partially reworked memory allocation from the pool, more robust
  104. implementation, always track read and write buffers.
  105. Added custom memory poisoning in memory pool with address sanitizer.
  106. Added missing update of the read buffer size.
  107. Addition for doxy for new behaviour of MHD_del_response_header().
  108. Added two tests with non-standard symbols in requests.
  109. Removed double close of connection with error in headers processing.
  110. Respond to the client with error if chunked request has broken chunked
  111. encoding as required by HTTP RFC instead of just closing the connection.
  112. Fixed request headers processing. Do not recognize bare CR as end of line.
  113. Fixed processing of CRCR, bare CR, LFCR, and LFLF as end of the line for
  114. request chunked encoding. Now only CRLF or bare LF are recognized as end
  115. of line.
  116. Added Lawrence Sebald to the AUTHORS file (iovec-based responses).
  117. Check for PAGESIZE and PAGE_SIZE macros and check whether they can be used
  118. for static variable initialization.
  119. Include "MHD_config.h" before all other includes to set macros required to
  120. be set before standard includes.
  121. Chunked response: abort with error if application returns more data than
  122. requested.
  123. Monotonic clock: use only native clock on W32 as all other clocks are just
  124. wrappers.
  125. W32: fixed builds with MSVC, added projects for VS2022, added MSVC
  126. universal project that use latest available toolset, use C17 if supported.
  127. Chunked response: fixed calculation of number of bytes left to send.
  128. microhttpd.h: doxy clarifications for sockets polling.
  129. Updated HTTP statuses, methods, and headers names from the registries.
  130. Further improved doxy for MHD_add_response_header().
  131. A few comments improvements and clarifications.
  132. Added internal connection's flag indicating discard of the request. -EG
  133. Websockets update by David Gausmann. -DG
  134. Fixed reported value for MHD_CONNECTION_INFO_CONNECTION_TIMEOUT.
  135. Minor code readability improvements in MHD_set_connection_option().
  136. Improved doxy for MHD_get_timeout().
  137. Memorypool: minor code improvements. -EG
  138. September 2021
  139. Improved system includes headers detection and usage. Removed unused
  140. headers detection.
  141. Added indirect calculation of maximum values at compile time by
  142. using types size detection. These values are used only to mute
  143. compiler warnings.
  144. Fixed pre-compiler errors if various *_MAX macros defined with
  145. non-digits symbols not readable for pre-compiler.
  146. Limit number of used CPU cores in tests to 6, unless heavy tests are
  147. enabled.
  148. Disabled parallel tests with libcurl if heavy tests are enabled.
  149. configure: removed '--enable-sanitizer' and added '--enable-sanitizers'
  150. parameters. Added testing for supported sanitizers and enabling only
  151. supported sanitizers.
  152. Added support for run-time sanitizers settings for tests when
  153. sanitizers are enabled.
  154. Added support for undefined behavior sanitizer without run-time library.
  155. Fixed various undefined behavior sanitizer detected errors, improved
  156. portability.
  157. Fixed how bitwise NOT is used with enum, fixed portability.
  158. microhttpd.h: changed macros MHD_CONTENT_READER_* to use ssize_t.
  159. test_postprocessor: added more check, improved error reporting, added
  160. new test data.
  161. postprocessor: fixed undefined behavior (memcpy(), memmove() with zero
  162. size and NULL pointer).
  163. Updated copyright year in W32 DLLs.
  164. postprocessor: fixed empty key processing.
  165. test_postprocessor: added tests with hex-encoded values.
  166. postprocessor: fixed incomplete processing of the last part of hex-encoded
  167. value if data was broken into certain sized pieces.
  168. Used type specifiers for printf() from inttypes.h to improved compatibility
  169. with various run-time libs. Fallback to standard values if type specifiers
  170. are not defined.
  171. Added detection of used run-time library (MSVCRT/UCRT) on W32.
  172. testcurl: fixed incorrect case-insensitive match for method name. Method
  173. name must be checked by using case-sensitive match.
  174. microhttpd.h: clarified some doxy descriptions.
  175. Prevented potential double sending of error responses.
  176. Fixed application notification with MHD_REQUEST_TERMINATED_COMPLETED_OK
  177. when error response has been sent (MHD_REQUEST_TERMINATED_WITH_ERROR is
  178. used).
  179. Avoid trying to send error response if response is already being sent.
  180. Improved log error message when error response is processing. -EG
  181. August 2021
  182. Silently drop "keep-alive" token from response "connection" header,
  183. "keep-alive" cannot be enforced and always enabled if possible.
  184. Further improved doxy for MHD_add_response_header().
  185. Added detection of the "Date:" header in the response headers set by
  186. app at response forming time.
  187. Disallow space in response header name, allow tab in response header
  188. value.
  189. Added internal MHD_uint8_to_str_pad() function.
  190. Used internal MHD_uint8_to_str_pad() in datestamp generation function.
  191. Added detection and reporting of incorrect "Upgrade" responses. -EG
  192. Fixed short busy waiting (up to one second) when connection is going
  193. to be closed. -AI
  194. Minor improvement for test_callback, test_get_chunked
  195. Fixed chunked responses with known size.
  196. Added two more tests for chunked response.
  197. Fixed chunked responses with predefined data (without data callback).
  198. Fixed calculation of the buffer size for the next response chunk.
  199. Completely rewritten reply header build function. The old version
  200. had several levels of hacks, was unmaintainable, did not follow
  201. HTTP specification in details; fixed used caseless header matching
  202. where case-sensitive matching must be used; removed two passes of
  203. header building. New version use clear logic and can be extended
  204. when needed.
  205. Changed behaviour: "Connection: keep-alive" is not being sent
  206. for HTTP/1.1 connection (as per HTTP RFC).
  207. test_get_chunked: fixed error reporting.
  208. HTTPS tests: fixed memory leaks if function failed.
  209. libcurl tests: improved handling of curl multi_*.
  210. Added two tests for correct choice of "Keep-Alive" or "Close".
  211. Simplified Makefile for testcurl.
  212. Fixed select() error handling in tests.
  213. microhttpd.h: minor macro formatting
  214. Changed behaviour: if response size is unknown and chunked encoding is
  215. allowed, chunked encoding is used even for non-keep-alive connection as
  216. required by HTTP RFC.
  217. Added two more tests for chunked replies.
  218. Simplified keepalive_possible(); added new value for MHD_ConnKeepAlive,
  219. added third state "Upgrade".
  220. Changed behaviour: used HTTP/1.1 replies for HTTP/1.0 requests as
  221. required by HTTP RFC. HTTP/1.0 reply still can be enforced by response
  222. flag.
  223. Added more doxy for MHD_ResponseFlags, added new names with the same
  224. values as old names: MHD_RF_HTTP_1_0_COMPATIBLE_STRICT and
  225. MHD_RF_HTTP_1_0_SERVER.
  226. Added new value MHD_RF_SEND_KEEP_ALIVE_HEADER to enforce sending of
  227. "Connection: keep-alive" even for HTTP/1.1 clients when keep-alive is
  228. used.
  229. test_get_close_keep_alive: added more combinations of parameters to
  230. check.
  231. Added separate flag for chunked response in connection instead of
  232. reusing the same flag as for chunked request.
  233. Added new connection's flag "stop_with_error".
  234. Fixed empty first line processing: the request could be not processed
  235. unless something else kicks next processing the same connection again.
  236. Added new connection states: MHD_CONNECTION_REQ_LINE_RECEIVING,
  237. MHD_CONNECTION_FULL_REQ_RECEIVED, MHD_CONNECTION_START_REPLY to
  238. simplify states logic.
  239. Changed write buffer allocation logic: as connection buffer size is
  240. known and fixed, use initially use full buffer for writing and reduce
  241. size of part used for writing if another allocation from the same
  242. buffer needs to be done. Implemented helper function to automatically
  243. reduce the size of read or write part to allocate buffer for other
  244. needs.
  245. Added define of NDEBUG if neither _DEBUG nor NDEBUG are defined.
  246. As accepted sockets inherit non-blocking flag from listening socket
  247. on all platform except Linux, track this state to use less number
  248. of syscalls.
  249. Fixed compiler and static analyser warnings.
  250. Moved HTTPS tests helper file to the HTTPS tests directory.
  251. Minor Makefiles cleanup.
  252. Added support for new monotonic clock ids.
  253. Added new internal monotonic clock function with milliseconds accuracy.
  254. Fixed support of custom connection timeout in thread-per-connection mode.
  255. Added more error checking to test_timeout.
  256. microhttpd.h: removed duplicated macro.
  257. Refined timeouts handling. Switched from seconds resolution to milliseconds
  258. resolution, added automatic detection and support of low-resolution system
  259. clock to avoid busy-waiting at connection expiration. Added log message
  260. for too large timeout period (> 146 million years) with trim to supported
  261. values. -EG
  262. Wed 04 Aug 2021 06:56:52 PM CEST
  263. Introduce new MHD_CONNECTION_INFO_HTTP_STATUS. -CG
  264. July 2021
  265. Added automatic response flags with detection when response
  266. is being formed.
  267. Added special processing for response "Connection" headers, combined
  268. multiple "Connection" headers into single header.
  269. Restructured MSVC project files.
  270. Changed MSVC project defaults to Vista+ (WinXP is still supported).
  271. Fixed copy-paste error in mhd_aligh.h, added support for MSVC.
  272. Added internal function for printing hex and decimals numbers.
  273. Reply chunked body handling fixes, used new internal functions
  274. instead of snprintf().
  275. Added automatic response flag when app sets chunked encoding header.
  276. New internal function for chunked reply footer forming. Unification with
  277. reply header forming function just over-complicated things and made
  278. function hardly maintainable.
  279. Added new function MHD_get_reason_phrase_len_for(), related tests and
  280. updated scripts for response phrases.
  281. Added more tests for chunked replies.
  282. Added function to reset connection state after finishing processing of
  283. request-reply to prepare for the next request.
  284. Added even more tests for chunked replies.
  285. Added internal function for printing uint64_t decimal numbers. -EG
  286. June 2021
  287. Tests: implemented checking of response footer.
  288. Fixed loss of incoming data if more than half of buffer is
  289. used for the next request data.
  290. Fixed completely broken calculation of request header size.
  291. Chunked response: do not ask app callback for more data then
  292. it is possible to process (more than 16 MBytes).
  293. Check and report if app used wrong response code (>999 or <100)
  294. Refuse to add second "Transfer-Encoding" header.
  295. HTTPS tests: check whether all libcurl function succeeded.
  296. HTTPS tests: implemented new detection of TLS backend.
  297. HTTPS tests: fixed tests with new TLS defaults (SSL forbidden).
  298. Implemented detection of basic HTTP methods, fixed wrong
  299. caseless matching for HTTP method names.
  300. MHD_create_response_*() functions: improved doxy.
  301. MHD_add_response_header: added detailed comment about automatic
  302. headers.
  303. Do not allow responses with 1xx codes for HTTP/1.0 requests.
  304. Fixed used order of headers: now user response headers are used in
  305. the same order as was added by application.
  306. Added new internal function MHD_get_response_element_n_().
  307. Added detection of more compiler built-ins for bits rotations.
  308. Minor optimisation of caseless strings matching.
  309. Added MHD_str_remove_token_caseless_() function and tests.
  310. Added MHD_str_remove_tokens_caseless_() function and tests. -EG
  311. May 2021
  312. Doxy description clarifications for MHD_get_timeout() and related
  313. functions.
  314. Added MHD_create_response_from_buffer_with_free_callback_cls().
  315. Added SHA-1 calculation (required for WebSockets).
  316. Added new internal header mhd_aligh.h for checking alignment of
  317. variables.
  318. Fixed SHA-256 and MD5 calculation with unaligned data.
  319. Added tests for hashes with unaligned data.
  320. Used compiler built-ins for bits rotations.
  321. Added detection of HTTP version at early stage.
  322. Added early response of unsupported HTTP version.
  323. Fixed wrong caseless matches for HTTP version strings.
  324. Added calculation of error responses at compile time (avoided
  325. repeated strlen() for known data). -EG
  326. April 2021
  327. New test for reply chunked encoding. -EG
  328. Mon 26 Apr 2021 02:09:46 PM CEST
  329. Importing experimental Websocket support by David Gausmann. -CG
  330. Sun 25 Apr 2021 14:00:00 MSK
  331. Releasing GNU libmicrohttpd 0.9.73. -EG
  332. Sat 24 Apr 2021 23:00:00 MSK
  333. Fixed build with Clang and Visual Studio.
  334. MSVS project files updated.
  335. Enabled bind port autodetection with MSVS builds. -EG
  336. Fri 23 Apr 2021 14:27:00 MSK
  337. Fixed build without TLS lib.
  338. Fixed build without system poll() function.
  339. Fixed compiler warnings on 32-bit platforms.
  340. Fixed various compiler warnings. -EG
  341. Thu 22 Apr 2021 12:32:00 MSK
  342. Fixed some typos.
  343. Force disable TCP_CORK, TCP_NOPUSH, and TCP_NODELAY before switching
  344. connection to "upgraded" mode.
  345. Improved portability of the test-suite for upgraded connections. -EG
  346. Tue 20 Apr 2021 17:11:00 MSK
  347. Disabled NLS by default in configure. -EG
  348. Mon 19 Apr 2021 18:58:00 MSK
  349. Fixed testzzuf/test_put_chanked to correctly use MHD.
  350. Added internal error code for TLS errors.
  351. Added all missing messages to the .pot file.
  352. Detect more types of errors for receiving data and report
  353. error description in the MHD log.
  354. Added support for ALPN on TLS connections if supported by
  355. used TLS library. -EG
  356. Sun 18 Apr 2021 20:47:00 MSK
  357. Removed dead code.
  358. Limited iov-backed responses size to SSIZE_MAX as limited by
  359. system calls.
  360. Report error message in MHD log for send errors. -EG
  361. Sat 17 Apr 2021 18:50:00 MSK
  362. Unified upgrade test behavior for all platforms.
  363. Some code simplification and unification.
  364. Compiler warning (false positive) fixed. -EG
  365. Fri 16 Apr 2021 17:58:00 MSK
  366. Used run-time value if IOV_MAX if available.
  367. Fixed portability of error handling for sending functions.
  368. Detect pipes/unix sockets on fly and do not use TCP/IP specific
  369. functions with them.
  370. Fixed support of UNIX sockets on non-Linux kernels. -EG
  371. Fri 16 Apr 2021 10:23:39 AM CEST
  372. Detect if a socket is a UNIX domain socket and do not try to play
  373. with TCP corking options in this case (avoids useless failed
  374. syscalls). -CG
  375. Thu 15 Apr 2021 18:56:00 MSK
  376. Fixed configure '--enable-sanitizer' parameter.
  377. Stopped pushing of partial responses when limited by system maximum size
  378. for sendmsg(). -EG
  379. Web 14 Apr 2021 22:20:00 MSK
  380. Fixed: use sendmsg() in POSIX-compatible way, do not try to send more
  381. than IOV_MAX elements per single call. -EG
  382. Sun 11 Apr 2021 15:44:00 MSK
  383. Updated test TLS certificates to not expired modern versions, restored
  384. HTTPS examples compatibility with modern browsers.
  385. TCP_NODELAY is not pre-enabled for HTTPS connection as it actually
  386. does not speed-up TLS handshakes on moders OSes. -EG
  387. Thu 01 Apr 2021 21:29:46 MSK
  388. Fixed MD5 digest authorization broken when compiled without variable
  389. length arrays support (notably with MSVC).
  390. Fixed and muted compiler warning.
  391. Deeper test with zzuf if configured with --enable-heavy-tests.
  392. Removed run-check of assert() in configure to avoid core dumps. -EG
  393. Thu 01 Apr 2021 17:46:00 MSK
  394. Added new function MHD_run_wait() useful for single-threaded applications
  395. without other network activity.
  396. Added tests for the new function. -EG
  397. Wed 17 Mar 2021 20:53:33 MSK
  398. Re-factored startup log parameters processing. Warn user if wrong logger
  399. could be used potentially.
  400. Added headers doxy with information about minimal MHD version when
  401. particular symbols were introduced.
  402. Added new daemon option to indicate SIGPIPE handling by application for
  403. daemons being run in application thread. -EG
  404. Wed 24 Feb 2021 19:23:00 MSK
  405. SIGPIPE-related macro minor refactoring for readability.
  406. Added new response iov function (and related framework), based on the patch
  407. provided by Lawrence Sebald and Damon N. Earp from NASA. -EG
  408. Thu 04 Feb 2021 06:41:34 PM CET
  409. Fix PostProcessor to always properly stop iteration when application callback
  410. tells it to do so. -CG
  411. Sun 24 Jan 2021 21:30:00 MSK
  412. Added '--enable-heavy-tests' configure parameter.
  413. Minor configure.ac and Makefiles fixes. -EG
  414. Tue 19 Jan 2021 17:59:00 MSK
  415. Fixed compatibility with autoconf. 2.70
  416. Updated M4 macros. -EG
  417. Wed 06 Jan 2021 08:39:58 PM CET
  418. Return timeout of zero also for connections awaiting cleanup. -CG
  419. Tue 29 Dec 2020 15:39:00 MSK
  420. Improved speed of TLS handshake by pre-enabling TCP_NODELAY. -EG
  421. Mon 28 Dec 2020 21:36:00 MSK
  422. Releasing libmicrohttpd 0.9.72. -EG
  423. Mon 28 Dec 2020 09:37:00 MSK
  424. Completely reworked and rewritten TCP_CORK, TCP_NOPUSH, TCP_NODELAY and
  425. MSG_MORE handling. Reduced number of sys-calls, fixed portability for
  426. FreeBSD, OpenBSD, NetBSD, Darwin, W32, Solaris.
  427. Removed usage of gnutls_record_cork() as it fully blocks stream until
  428. final block is ready.
  429. Fixed compatibility with C90 compilers.
  430. Really started using sendmsg() for header + body combined single-call
  431. response sending.
  432. Fixed sending of response body by sendmsg() when it shouldn't be sent,
  433. like responses for HEAD requests.
  434. Improved error handling for gnutls_record_send().
  435. Updated W32 resources for .DLLs.
  436. Fixed building with various disabled features (like messages, HTTPS,
  437. http-upgrade, authorization etc.)
  438. Fixed possible SIGPIPE generation when sendfile() is used (it was always
  439. possible on Linux that sendfile() produce SIGPIPE, now it's fixed).
  440. Several compiler warnings muted and/or fixed in the lib code and in
  441. the examples. -EG
  442. Sun 01 Nov 2020 17:17:00 MSK
  443. Fixed conflict with system CPU_COUNT macro.
  444. Minor improvements of error reporting in MHD daemon.
  445. Fixed FTBFS with GnuTLS versions before 3.1.9
  446. Fixed test_add_conn for multi-CPU machines.
  447. Fixed analyzer warnings.
  448. Fixed use-after-free and resources leaks for upgraded connections
  449. in TLS mode with thread-per-connection. -EG
  450. Sun 25 Oct 2020 19:31:00 MSK
  451. Fixed epoll mode without listening socket.
  452. Minor improvements of thread sync.
  453. Fixed broken sendfile on FreeBSD.
  454. Fixed broken MHD with thread-pool and without listening socket.
  455. Added four tests for MHD_add_connection().
  456. Fixed several resources leaks in error handlers.
  457. Re-implemented scheme of handling of externally added connections,
  458. fixed thread-safety. -EG
  459. Wed 21 Oct 2020 10:00:58 AM CEST
  460. Corking should be OFF when sending the footer (#6610). -AP/CG
  461. Wed 07 Oct 2020 11:07:00 MSK
  462. W32 default target version changed to Vista, XP is still supported.
  463. Minor fixes and additional asserts for memorypool.
  464. IPv6 tests are not used if IPv6 is disabled at run-time. -EG
  465. Sun 27 Sep 2020 10:08:03 PM CEST
  466. Fixed incorrect triggering of epoll edge polling for
  467. "upgraded" TLS connections. Fixed a few cases where
  468. gnutls_record_uncork() return value was still ignored,
  469. possibly causing buffer to not be flushed correctly. -CG
  470. Sat 26 Sep 2020 08:18:02 PM CEST
  471. Make MHD_USE_NO_LISTEN_SOCKET work in conjunction with
  472. MHD internal threads. -CG/DE
  473. Thu 24 Sep 2020 16:55:00 MSK
  474. Fixed compiler warnings on W32.
  475. Minor optimisation of MHD_YES/MHD_NO internal usage.
  476. Refactor and cleanup of internal debugging macros.
  477. Updated HTTP status codes, header names and methods from
  478. the registries.
  479. Fixed portability of test_upgrade_large.
  480. Minor testsuite fixes.
  481. Restored parallel build of libmicrohttpd (except tests). -EG
  482. Fri 11 Sep 2020 10:08:22 PM CEST
  483. Fix crash problem in PostProcessor reported by MD. -CG
  484. Fix GnuTLS configure test to check for gnutls_record_uncork. -CG
  485. Wed 19 Aug 2020 09:40:39 AM CEST
  486. Add logic to check on MHD_pool_reallocate() failure reported on the
  487. mailinglist (will NOT yet fix the issue). -CG
  488. Sun 26 Jul 2020 01:56:54 PM CEST
  489. Add MHD_create_response_from_pipe() to allow creating a response based
  490. on data read from a pipe. -CG
  491. Fri Jul 10 15:04:51 CEST 2020
  492. Fixed Postprocessor URL-encoded parsing if '%' fell on boundary. -CG/MD
  493. Thu 02 Jul 2020 09:56:23 PM CEST
  494. Fixed return type of MHD_queue_basic_auth_fail_response. -CA/CG
  495. Sun 28 Jun 2020 09:36:01 PM CEST
  496. Fix buffer overflow issue in URL parser.
  497. Releasing libmicrohttpd 0.9.71. -CG
  498. Tue 16 Jun 2020 08:44:22 PM CEST
  499. Add logic to try again if GNUtls uncork() fails. -CG
  500. Wed 10 Jun 2020 09:44:29 PM CEST
  501. Fixed PostProcessor bug discovered by MD, which given certain parser
  502. boundaries caused the returned values to be wrong. -CG/MD
  503. Wed 08 Apr 2020 10:53:01 PM CEST
  504. Introduce `enum MHD_Result` for #MHD_YES/#MHD_NO to avoid using 'int' so much.
  505. Note that this change WILL cause compiler warnings until (most) MHD callbacks
  506. in application code change their return type from 'int' to 'enum MHD_Result'.
  507. That said, avoiding possible confusions of different enums is going to make
  508. the code more robust in the future. For conditional compilation, test
  509. for "MHD_VERSION >= 0x00097002". -CG
  510. Tue 07 Apr 2020 02:58:39 PM BRT
  511. Fixed #5501 (Added example for how to provide a tiny threaded websocket server). -SC
  512. Tue 31 Mar 2020 02:36:40 PM BRT
  513. Fixed #6142 (applied several spelling fixes). -DKG/-SC
  514. Sat 07 Mar 2020 05:20:33 PM CET
  515. Fixed #6090 (misc. severe socket handling bugs on OS X). -CG
  516. Sat 08 Feb 2020 09:12:54 PM CET
  517. Fixed 100-continue handling for PATCH method (#6068).
  518. Fixed FTBFS from wrong #endif position for certain builds (#6025).
  519. Fixed connection overflow issue when combining MHD_USE_NO_LISTEN_SOCKET
  520. with MHD_USE_THREAD_PER_CONNECTION (#6036).
  521. Updated m4 script to fix FTBFS when using -Werror=unused-but-set-parameter (#6078).
  522. Releasing libmicrohttpd 0.9.70. -CG
  523. Thu Dec 26 14:43:27 CET 2019
  524. Adding fix for urlencoding of keys without values in
  525. post-processor logic. -CG
  526. Tue 24 Dec 2019 03:32:18 PM CET
  527. Adding patch from Ethan Tuttle with test case for urlencoding
  528. in post-processor for keys without values. -CG/ET
  529. Sun 15 Dec 2019 02:12:02 PM CET
  530. Fix send() call (affects Mac OS X). #5977 -CG/fbrault
  531. Releasing libmicrohttpd 0.9.69. -CG
  532. Fri 29 Nov 2019 11:22:25 PM CET
  533. If application suspends a connection before we could send 100 CONTINUE,
  534. give application another shot at queuing a reply before the upload begins. -CG
  535. Sat 26 Oct 2019 06:53:05 PM CEST
  536. Fix regression where MHD would fail to return an empty response
  537. when used with HTTPS.
  538. Releasing libmicrohttpd 0.9.68. -CG/TR
  539. Fri 25 Oct 2019 02:31:59 PM CEST
  540. Introduce MHD_RF_INSANITY_HEADER_CONTENT_LENGTH. -CG
  541. Thu 17 Oct 2019 04:50:52 PM CEST
  542. Integrate 0-byte send() method for uncorking for old FreeBSD/OS X
  543. systems into new mhd_send.c logic for uncorking.
  544. Releasing libmicrohttpd 0.9.67. -CG
  545. Fri 18 Aug 2019 00:00:00 PM UTC
  546. Fixes and optimizations for the setsockopt handling:
  547. * Added: MHD_UPGRADE_ACTION_CORK_ON and MHD_UPGRADE_ACTION_CORK_OFF
  548. to enum MHD_UpgradeAction (turn corking on/off on the underlying
  549. socket).
  550. * Use calls and flags native to the system for corking and
  551. other operations, tested with performance improvements on
  552. FreeBSD, Debian Linux, NetBSD, and cygwin. In particular,
  553. this adds selective usage of MSG_MORE, NODELAY, TCP_NOPUSH,
  554. TCP_CORK. -ng0
  555. Fri 09 Aug 2019 10:07:27 AM CEST
  556. Copy compiler and linker hardening flags from GNUnet (updating
  557. configure.ac). -CG
  558. Thu 01 Aug 2019 01:23:36 PM CEST
  559. Releasing libmicrohttpd 0.9.66. -CG
  560. Thu 01 Aug 2019 12:53:49 AM CEST
  561. Fix issue with discarding unhandled upload data discovered
  562. by Florian Dold. -CG
  563. Mon 29 Jul 2019 08:01:50 PM CEST
  564. Fix hanging situation with large transmission over upgraded
  565. (i.e. Web socket) connection with epoll() and HTTPS enabled
  566. (as reported by Viet on the mailinglist). -CG
  567. Thu 25 Jul 2019 02:40:12 PM CEST
  568. Fixing regression introduced in cc5032b85 (bit mask matching
  569. of the header kinds in MHD_lookup_connection_value()), as
  570. reported by Jose Bollo on the mailinglist. -CG/JB
  571. Tue Jul 16 19:56:14 CEST 2019
  572. Add MHD_OPTION_HTTPS_CERT_CALLBACK2 to allow OCSP stapling
  573. and MHD_FEATURE_HTTPS_CERT_CALLBACK2 to check for. -TR
  574. Fri Jul 05 2019 22:30:40 MSK
  575. Releasing libmicrohttpd 0.9.65. -EG
  576. Sun Jun 23 2019 21:27:43 MSK
  577. Many fixes and improvements for connection-specific memory pool:
  578. * Added asserts;
  579. * Added testing of reallocation;
  580. * Reallocation code rewritten to avoid extra allocation, when
  581. possible to reuse already allocated memory;
  582. * Large memory pools aligned to system page size;
  583. * Large memory pools on W32 are cleared more securely after use,
  584. optimised usage of system memory.
  585. Better handled connection's memory shortage situations:
  586. * error response could be sent to client even if all buffer space
  587. was used;
  588. * if buffer space become low when receiving, do not allocate last
  589. buffer space and use small receive blocks instead.
  590. Improved sending speed by using all available buffer space for
  591. sending. -EG
  592. Sun Jun 09 2019 20:27:04 MSK
  593. Releasing libmicrohttpd 0.9.64. -EG
  594. Sun Jun 09 2019 20:03:16 MSK
  595. Updated HTTP headers, methods and status codes from registries,
  596. Added scripts to import new headers, methods and status codes from
  597. registries,
  598. Minor doxyget comment fix,
  599. Added missing MSVS project files to tarball.
  600. Reodered includes in microhttpd.h -EG
  601. Mon 03 Jun 2019 11:45:52 PM CEST
  602. Apply MHD_-prefix to hash functions, even if they are not in the
  603. officially exported API. -CG/DB
  604. Sun Jun 02 01:52:11 MSK 2019
  605. Support usage of SOCK_NOSIGPIPE on Solaris 11.4 and NetBSD 7+,
  606. finally avoid SIGPIPE on Solaris. -EG
  607. Sat Jun 01 22:51:50 MSK 2019
  608. Do not report errors if AF_UNIX socket is used on *BSD. -EG
  609. Thu May 30 23:32:09 MSK 2019
  610. Improved detection of 'getsockname()' in configure.
  611. Avoided using 'getsockname()' in code if not detected. -EG
  612. Sun May 26 23:32:49 MSK 2019
  613. Fixed some tests on W32. -EG
  614. Sun May 26 23:05:42 MSK 2019
  615. Better detection of sockaddr member in configure, fixed build on *BSD,
  616. Fixed compiler warnings,
  617. Updated and fixed libcurl tests. -EG
  618. Tue May 21 22:12:43 MSK 2019
  619. Fixed doxygen comments,
  620. Avoid dropping 'const' qualifier in macros,
  621. Fixed some compiler warnings,
  622. Properly support automatic port detections on some platforms,
  623. Added checks for too long TLS parameters strings. -EG
  624. Tue May 21 17:52:48 MSK 2019
  625. Spelling fixes. -EG
  626. Mon May 20 15:39:35 MSK 2019
  627. Compiler warning fixes. -EG/CG
  628. Fixed example for non-64bits platforms. -EG
  629. Wed May 15 23:51:49 MSK 2019
  630. Optimized and improved processing speed by using precalculated and
  631. already calculated lengths of strings. -EG
  632. Wed May 15 14:54:00 MSK 2019
  633. Fixed build from source on GNU Hurd. -EG
  634. Mon May 6 11:58:00 MSK 2019
  635. Updated README and COPYING files. MHD remains LGPLv2.1-licensed. -EG
  636. Fri May 3 20:08:00 MSK 2019
  637. Store connection's keys and values with sizes;
  638. Speedup keys search be comparing key length first;
  639. Added functions for working with keys and values with binary zeros;
  640. Fixed test_postprocessor_amp to fail on problems. -EG
  641. Wed May 1 16:40:00 MSK 2019
  642. Reverted change of MHD_KeyValueIterator, implemented MHD_KeyValueIteratorN
  643. with sizes for connection's key and value to get keys and values
  644. with binary zeros. -EG
  645. Mon 29 Apr 2019 01:26:39 AM BRT
  646. Fixed signed/unsigned comparison in example http_chunked_compression.c. -SC/TR
  647. Sun Apr 21 16:40:00 MSK 2019
  648. Improved compatibility with MSVC compilers;
  649. Fixed MHD compilation by Clang/LLVM in VS;
  650. Used MSVC intrinsics for bit rotations and bytes swap;
  651. Added project files for VS2019. -EG
  652. Fri Apr 19 23:00:00 MSK 2019
  653. Rewritten SHA-256 calculations from scratch to avoid changing LGPL version;
  654. Added usage of GCC/Clang built-ins for bytes swap to significantly improve
  655. speed of MD5 and SHA-256 calculation on platforms with known endianness.
  656. Added test for SHA-256 calculations. -EG
  657. Wed Apr 17 20:52:00 MSK 2019
  658. Refactoring of mhd5.c: optimized, dead code removed;
  659. Faster MD5 calculation on little endian platforms;
  660. Bit manipulations moved to separate header file.
  661. Added tests for MD5 calculations. -EG
  662. Mon 15 Apr 2019 05:33:52 PM CEST
  663. Add MHD_USE_POST_HANDSHAKE_AUTH_SUPPORT and
  664. MHD_USE_INSECURE_TLS_EARLY_DATA flags. -CG
  665. Thu Apr 11 11:37:00 MSK 2019
  666. Fixed MSVC 'Release' builds;
  667. Fixed usage of MSVC's assert. -EG
  668. Wed Apr 10 14:31:00 MSK 2019
  669. Improved shell compatibility for 'bootstrap', removed bash-ism.
  670. Added wrapper script 'autogen.sh'. -EG
  671. Mon 08 Apr 2019 03:06:05 PM CEST
  672. Fix close() checks as suggested by MK on the mailinglist
  673. (#3926). -MK/CG
  674. Wed 20 Mar 2019 10:20:24 AM CET
  675. Adding additional "value_length" argument to MHD_KeyValueIterator
  676. callback to support binary zeros in values. This is done in a
  677. backwards-compatible way, but may require adding a cast to existing
  678. code to avoid a compiler warning. -CG
  679. Sun Feb 10 21:00:37 BRT 2019
  680. Added example for how to compress a chunked HTTP response. -SC
  681. Sun 10 Feb 2019 05:03:44 PM CET
  682. Releasing libmicrohttpd 0.9.63. -CG
  683. Sat 09 Feb 2019 01:51:02 PM CET
  684. Extended test_get to test URI logging and query string parsing
  685. to avoid regression fixed in previous patch in the future. -CG
  686. Thu Feb 7 16:16:12 CET 2019
  687. Preliminary patch for the raw query string issue, to be tested. -CG
  688. Tue Jan 8 02:57:21 BRT 2019
  689. Added minimal example for how to compress HTTP response. -SC
  690. Wed Dec 19 00:06:03 CET 2018
  691. Check for GNUTLS_E_AGAIN instead of GNUTLS_E_INTERRUPTED when
  692. giving up on a TLS connection. -LM/CG
  693. Thu Dec 13 22:48:14 CET 2018
  694. Fix connection timeout logic if in thread-per-connection mode the
  695. working thread takes longer than the timeout to queue the response. -CG
  696. Tue Dec 11 09:58:32 CET 2018
  697. Add logic to avoid VLA arrays with compilers that do not support them. -CG
  698. Sat Dec 8 23:15:53 CET 2018
  699. Fixed missing WSA_FLAG_OVERLAPPED which can cause W32 to block on
  700. socket races when using threadpool. (See very detailed description
  701. of the issue in the libmicrohttpd mailinglist post of today.) -JM
  702. Sat Dec 8 22:53:56 CET 2018
  703. Added test for RFC 7616 and documented new API.
  704. Releasing libmicrohttpd 0.9.62. -CG
  705. Sat Dec 8 17:34:58 CET 2018
  706. Adding support for RFC 7616, experimental, needs
  707. testing and documentation still! -CG
  708. Fri Dec 7 12:37:17 CET 2018
  709. Add option to build MHD without any threads
  710. and MHD_FEATURE_THREADS to test for it. -CG
  711. Thu Dec 6 13:25:08 BRT 2018
  712. Renamed all occurrences from _model(s)_ to _mode(s)_. -SC
  713. Thu Dec 6 12:50:11 BRT 2018
  714. Optimized the function MHD_create_response_from_callback() for
  715. Windows by increasing its internal buffer size and allowed to customize
  716. it via macro MHD_FD_BLOCK_SIZE. -SC
  717. Thu Dec 6 02:11:15 BRT 2018
  718. Referenced the gnutls_load_file() function in the HTTPs examples. -SC
  719. Wed Dec 5 18:08:59 CET 2018
  720. Fix regression causing URLs to be unescaped twice. -CG
  721. Sun Nov 18 13:08:11 CET 2018
  722. Parse arguments with (properly) escaped URLs correctly.
  723. (making things work with recent cURL changes, #5473).
  724. Replace sprintf with snprintf in testcases.
  725. Releasing libmicrohttpd 0.9.61. -CG
  726. Wed Nov 14 14:01:21 CET 2018
  727. Fix build issue with GnuTLS < 3.0. -CG
  728. Mon Nov 12 19:50:43 CET 2018
  729. Fix #5473 (test case failure due to change in libcurl). -eworm
  730. Thu Nov 8 14:53:27 CET 2018
  731. Add MHD_create_response_from_buffer_with_free_callback. -CG
  732. Tue Nov 6 19:43:47 CET 2018
  733. Upgrading to gettext 0.19.8.
  734. Releasing libmicrohttpd 0.9.60. -CG
  735. Thu Nov 1 16:29:59 CET 2018
  736. Enable using epoll() without listen socket. -JB
  737. Sat Oct 20 12:44:16 CEST 2018
  738. In thread-per-connection mode, signal main thread for
  739. thread termination for instant clean-up and application
  740. notification about closed connections. -CG
  741. Tue Oct 16 20:43:41 CEST 2018
  742. Add MHD_RF_HTTP_VERSION_1_0_RESPONSE option to make MHD
  743. act more like an HTTP/1.0 server. -GH
  744. Fri Oct 5 18:44:45 CEST 2018
  745. MHD_add_response_header() now prevents applications from
  746. setting a "Transfer-Encoding" header to values other than
  747. "identity" or "chunked" as other transfer encodings are
  748. not supported by MHD. (Note that usually MHD will pick the
  749. transfer encoding correctly automatically, but applications
  750. can use the header to force a particular behavior.)
  751. Fixing #5411 (never set Content-length if Transfer-Encoding
  752. is given). -CG
  753. Sat Jul 14 11:42:15 CEST 2018
  754. Add MHD_OPTION_GNUTLS_PSK_CRED_HANDLER to allow use of PSK with
  755. TLS connections. -CG/TM
  756. Sat Jul 14 11:03:37 CEST 2018
  757. Integrate patch for checking digest authentication based on
  758. a digest, allowing servers to store passwords only hashed.
  759. Adding new function MHD_digest_auth_check_digest(). -CG/DB
  760. Sat Mar 10 12:15:35 CET 2018
  761. Upgrade to gettext-0.19.8.1. Switching to more canonical
  762. gettext integration. -CG
  763. Fri Mar 2 21:44:24 CET 2018
  764. Ensure MHD_RequestCompletedCallback is always called from
  765. the correct thread (even on shutdown and for upgraded connections). -CG
  766. Tue Feb 27 23:27:02 CET 2018
  767. Ensure MHD_RequestCompletedCallback is also called for
  768. upgraded connections. -CG
  769. Fri Feb 16 03:09:33 CET 2018
  770. Fixing #5278 as suggested by reporter. -CG/texec
  771. Thu Feb 1 10:12:22 CET 2018
  772. Releasing GNU libicrohttpd 0.9.59. -CG
  773. Thu Feb 1 08:39:50 CET 2018
  774. Fix masking operation. -CG/silvioprog
  775. Mon Jan 29 17:33:54 CET 2018
  776. Fix deadlock when failing to prepare chunked response
  777. (#5260). -CG/ghaderer
  778. Thu Jan 4 12:24:33 CET 2018
  779. Fix __clang_major__ related warnings for non-clang
  780. compilers reported by Tim on the mailinglist. -CG
  781. Mon Dec 11 17:11:00 MSK 2017
  782. Fixed tests on platforms with huge number of CPUs.
  783. Doxygen configuration was updated.
  784. Various doxygen fixes. -EG
  785. Mon Dec 07 21:08:00 MSK 2017
  786. Releasing GNU libmicrohttpd 0.9.58. -EG
  787. Mon Dec 07 16:01:00 MSK 2017
  788. Fixed HTTPS tests on modern platforms. -EG
  789. Mon Dec 04 15:43:00 MSK 2017
  790. Minor documentation installation fixes. -EG
  791. Mon Nov 27 22:58:38 CET 2017
  792. Tolerate AF_UNIX when trying to determine our binding port
  793. from socket. Use `sockaddr_storage` instead of trying to
  794. guess the sockaddr type before calling getsockname(). -CG
  795. Mon Nov 27 22:24:00 MSK 2017
  796. Releasing GNU libmicrohttpd 0.9.57. -EG
  797. Mon Nov 27 21:36:00 MSK 2017
  798. Updated README. -EG
  799. Mon Nov 27 18:37:00 MSK 2017
  800. Corrected names in W32 DLL resources.
  801. Reordered and clarified configure summary message.
  802. Additional compiler warning mutes for builds with various configure
  803. parameters.
  804. Fixed tests on Cygwin.
  805. Used larger SETSIZE for Cygwin (same value as for native W32).
  806. Minor fixes for Cygwin.
  807. Added configure parameter to force disable usage of sendfile().
  808. Minor testsuite fixes.
  809. Really fixed builds with optimisation for size. -EG
  810. Sat Nov 25 18:37:00 MSK 2017
  811. Fixed build with optimisation for size. -EG
  812. Fri Nov 24 20:14:02 CET 2017
  813. Releasing GNU libmicrohttpd 0.9.56. -CG
  814. Thu Nov 23 17:40:00 MSK 2017
  815. Added MHD_FEATURE_SENDFILE enum value and report. -EG
  816. Thu Nov 23 08:56:00 MSK 2017
  817. Fixed receiving large requests in TLS mode with epoll.
  818. Improved GnuTLS and libgcrypt detection in configure, do not ignore
  819. flags in GNUTLS_{CFLAGS,LIBS} variables.
  820. Added special trick for Solaris/Openindiana to find GnuTLS-3 with
  821. right bitness.
  822. Added support for Solaris sendfile(3) function.
  823. Fixed dataraces with thread ID on W32 and pthread. Now check for
  824. correct thread in MHD_queue_response() works correctly.
  825. Fixed and silenced compiler warnings in tests and examples.
  826. Removed usage of TLS flags in examples where TLS is not required.
  827. Added support for MultiSSL in https tests with libcurl >= 7.56.0.
  828. Improved detection of OFF_T_MAX, SIZE_MAX. Added macros for
  829. SSIZE_MAX in mhd_limits.h. There are some platforms that really
  830. require those macros.
  831. Added support for Darwin's sendfile() function.
  832. Updated .gitignore files.
  833. Reworked mhd_sys_extentions.m4 with better support of modern
  834. platforms, more reliable detection of required macros, and
  835. detection of disabling of system-specific features by
  836. _XOPEN_SOURCE macro. -EG
  837. Wed Nov 1 20:43:00 MSK 2017
  838. Mixed and muted many compiler warnings. Now GCC's flags
  839. -Wall -Wextra could be used for building.
  840. Fixed compilation of examples without libmagic.
  841. Better detection of libgnutls in configure.
  842. Reworked launch of nested configure in "po" directory to
  843. prevent useless reconfiguration.
  844. Fixed some wrong asserts.
  845. Enabled "test_options" test.
  846. Use "test_start_stop" without libcurl.
  847. Use chunks with sendfile() to prevent locking thread for
  848. single connection with large file.
  849. Added support for FreeBSD's sendfile with additional
  850. optimisations for FreeBSD 11.
  851. Refactoring and improvements for MHD_start_daemon_va() and
  852. MHD_stop_daemon().
  853. Fixed testing with GnuTLS >= 3.6.0. -EG
  854. Mon Oct 9 22:38:07 CEST 2017
  855. Add MHD_free() to allow proper free()-ing of username/password
  856. data returned via MHD_digest_auth_get_username() or
  857. MHD_basic_auth_get_username_password() on Windows. -CG
  858. Tue Sep 26 14:00:58 CEST 2017
  859. Fixing race involving setting "at_limit" flag. -CG
  860. Tue Sep 08 21:39:00 MSK 2017
  861. Fixed build of examples when MHD build with non-pthread lib.
  862. MHD_queue_response(): added check for using in correct thread.
  863. Fixed sending responses larger 16 KiB in TLS mode with epoll.
  864. Improved doxy for MHD_get_timeout() and related functions.
  865. Minor internal refactoring. -EG
  866. Tue Jul 23 11:32:00 MSK 2017
  867. Updated chunked_example.c to provide real illustration of usage of
  868. chunked encoding. -EG
  869. Thu Jul 13 21:41:00 MSK 2017
  870. Restored SIGPIPE suppression in TLS mode.
  871. Added new value MHD_FEATURE_AUTOSUPPRESS_SIGPIPE so application could
  872. check whether SIGPIPE handling is required.
  873. Used GNUTLS_NONBLOCK for TLS sessions. -EG
  874. Tue Jun 20 23:52:00 MSK 2017
  875. Libgcrypt is now optional and required only for old GnuTLS versions. -EG
  876. Wed Jun 14 21:42:00 MSK 2017
  877. Added support for debug assert() and new configure parameter
  878. --enable-asserts for debug builds.
  879. Removed non-functional Symbian support. -EG
  880. Mon Jun 05 23:34:00 MSK 2017
  881. More internal refactoring:
  882. merged MHD_tls_connection_handle_read/write() with non-TLS version,
  883. reduced and unified number of layers for network processing (before
  884. refactoring MHD_tls_connection_handle_read->MHD_connection_handle_read->
  885. do_read->recv_tls_adapter->GnuTLS->recv_param_adapter - 5 MHD layers;
  886. after refactoring MHD_connection_handle_read->recv_tls_adapter->GnuTLS -
  887. 2 MHD layers),
  888. simplified and removed dead code from
  889. MHD_connection_handle_read/write() without functional change. -EG
  890. Mon Jun 05 22:20:00 MSK 2017
  891. Internal refactoring:
  892. used TCP sockets directly with GnuTLS (performance improvement),
  893. moved some connection-related code from daemon.c to
  894. connection.c/connection_https.c,
  895. removed hacks around sendfile() and implemented correct support of
  896. sendfile(),
  897. removed do_read() and do_write() to reduce number of layer around send()
  898. and recv() and to improve readability and maintainability of code,
  899. implemented separate tracking of TLS layer state, independent of HTTP
  900. connection stage. -EG
  901. Sun Jun 04 15:02:00 MSK 2017
  902. Improved thread-safety of MHD_add_connection() and
  903. internal_add_connection(), minor optimisations. -EG
  904. Sun May 28 23:26:00 MSK 2017
  905. Releasing GNU libmicrohttpd 0.9.55. -EG
  906. Sun May 21 18:48:00 MSK 2017
  907. Fixed build with disabled "UPGRADE".
  908. Fixed possible null-dereference in HTTPS test.
  909. Fixed compiler warning in process_request_body(), minor optimizations.
  910. Do not allow suspend of "upgraded" connections.
  911. Fixed returned value for MHD_CONNECTION_INFO_CONNECTION_SUSPENDED.
  912. Fixed removal from timeout lists of non-existing connections in
  913. cleanup_connection().
  914. Fixed double locking of mutex. -EG
  915. Sun May 14 15:05:00 MSK 2017
  916. Fixed resuming connections and closing upgraded connections in select()
  917. mode with thread-per-connection. -EG
  918. Sun May 14 14:49:00 MSK 2017
  919. Removed extra call to resume connections in MHD_run().
  920. Handle resumed connection without delay in epoll mode.
  921. Update states of resumed connection after resume in thread-per-connection
  922. mode.
  923. Fixed resuming connections and closing upgraded connections in poll()
  924. mode with thread-per-connection. -EG
  925. Thu May 11 22:37:00 MSK 2017
  926. Faster start really processing data in resumed connections. -EG
  927. Thu May 11 14:24:00 MSK 2017
  928. Do not add any "Connection" headers for "upgrade" connections. -EG
  929. Wed May 10 23:09:00 MSK 2017
  930. Resume resuming connection before other processing in external polling
  931. mode. -EG
  932. Tue May 9 23:16:00 MSK 2017
  933. Fixed: Do not add "Connection: Keep-Alive" header for "upgrade"
  934. connections. -EG
  935. Tue May 9 21:01:00 MSK 2017
  936. Fixed: check all "Connection" headers of request for "Close" and "Upgrade"
  937. tokens instead of using only first "Connection" header with full string
  938. match. -EG
  939. Tue May 9 12:28:00 MSK 2017
  940. Revert: continue match footers in MHD_get_response_header() for backward
  941. compatibility. -EG
  942. Mon May 8 19:30:00 MSK 2017
  943. Fixed: use case-insensitive matching for header name in
  944. MHD_get_response_header(), match only headers (not footers). -EG
  945. Fri May 5 20:57:00 MSK 2017
  946. Fixed null dereference when connection has "Upgrade" request and
  947. connection is not upgraded. -JB/EG
  948. Better handle Keep-Alive/Close. -EG
  949. Tue May 2 18:37:53 CEST 2017
  950. Update manual. -CG
  951. Add MHD_CONNECTION_INFO_REQUEST_HEADER_SIZE.
  952. Releasing GNU libmicrohttpd 0.9.54. -CG
  953. Thu Apr 27 22:31:00 CEST 2017
  954. Replaced flags MHD_USE_PEDANTIC_CHECKS and MHD_USE_PERMISSIVE_CHECKS by
  955. single option MHD_OPTION_STRICT_FOR_CLIENT. Flag MHD_USE_PEDANTIC_CHECKS
  956. is still supported. -EG
  957. Tue Apr 26 15:11:00 CEST 2017
  958. Fixed shift in HTTP reasons strings.
  959. Added test for HTTP reasons strings. -EG
  960. Tue Apr 25 19:11:00 CEST 2017
  961. Allow flag MHD_USE_POLL with MHD_USE_THREAD_PER_CONNECTION and without
  962. flag MHD_USE_INTERNAL_POLLING_THREAD for backward compatibility. -EG
  963. Mon Apr 24 17:29:45 CEST 2017
  964. Enforce RFC 7230's rule on no whitespace by default,
  965. introduce new MHD_USE_PERMISSIVE_CHECKS to disable. -CG
  966. Sun Apr 23 20:05:44 CEST 2017
  967. Enforce RFC 7230's rule on no whitespace in HTTP header
  968. field names if MHD_USE_PEDANTIC_CHECKS is set. -CG
  969. Sun Apr 23 19:20:33 CEST 2017
  970. Replace remaining occurrences of sprintf() with
  971. MHD_snprintf_(). Thanks to Ram for pointing this out. -CG
  972. Sat Apr 22 20:39:00 MSK 2017
  973. Fixed builds in Linux without epoll.
  974. Check for invalid --with-thread= configure parameters.
  975. Fixed support for old libgcrypt on W32 with W32 threads. -EG
  976. Tue Apr 11 22:17:00 MSK 2017
  977. Releasing GNU libmicrohttpd 0.9.53. -EG
  978. Mon Apr 10 19:50:20 MSK 2017
  979. HTTPS tests: skip tests instead of failing if HTTPS is not supported by
  980. libcurl.
  981. HTTPS tests: fixed return values so testsuite is able to correctly
  982. interpret it.
  983. Fixed ignored result of epoll test in test_https_get_select. -EG
  984. Thu Apr 06 23:02:07 MSK 2017
  985. Make zzuf tests compatible with *BSD platforms. -EG
  986. Thu Apr 06 22:14:22 MSK 2017
  987. Added warning for hypothetical extra large timeout.
  988. Fixed incorrect timeout calculation under extra rare conditions.
  989. Fixed accidental usage of IPv6 in testsuite in specific conditions. -EG
  990. Wed Apr 05 14:14:22 MSK 2017
  991. Updated autoinit_funcs.h to latest upstream version with proper support of
  992. Oracle/Sun compiler. -EG
  993. Wed Apr 05 12:53:26 MSK 2017
  994. Fixed some compiler warnings.
  995. Fixed error snprintf() errors detection in digestauth.c.
  996. Converted many run-time 'strlen()' to compile-time calculations. -EG
  997. Sun Mar 26 13:49:01 MSK 2017
  998. Internal refactoring for simplification and unification.
  999. Minor optimizations and minor fixes.
  1000. MHD_USE_ITC used again in thread pool mode. -EG
  1001. Sat Mar 25 20:58:24 CET 2017
  1002. Remove dead MHD_strx_to_sizet-functions and associated
  1003. test cases from code. -CG
  1004. Sat Mar 25 20:40:10 CET 2017
  1005. Allow chunk size > 16 MB (up to 2^64-1). Ignore
  1006. chunk extensions instead of triggering an error.
  1007. (fixes #4967). -CG
  1008. Tue Mar 25 20:59:18 MSK 2017
  1009. Check for invalid combinations of flags and options in
  1010. MHD_start_daemon(). -EG
  1011. Tue Mar 21 13:51:04 CET 2017
  1012. Use "-lrt" to link libmicrohttpd if we are using
  1013. clock_gettime() as needed by glibc < 2.17. -CG
  1014. Tue Mar 21 13:42:07 CET 2017
  1015. Allow chaining of suspend-resume calls withuot
  1016. the application processing data from the network. -CG
  1017. Mon Mar 20 0:51:24 MSK 2017
  1018. Added autoconf module for detection whatever shutdown of listening socket
  1019. trigger select. This is only reliable method to use such feature as some
  1020. platforms change behaviour from version to version. -EG
  1021. Sun Mar 19 13:57:30 MSK 2017
  1022. Rewritten logic of handling "upgraded" TLS connections in epoll mode:
  1023. used edge trigger instead of level trigger,
  1024. upgraded "ready" connection are stored in DL-list,
  1025. fixed handling of more than 128 ready connections,
  1026. fixed busy-waiting for idle "upgraded" TLS connections. -EG
  1027. Fri Mar 17 10:45:31 MSK 2017
  1028. If read buffer is full, MHD need to receive remote data and application
  1029. suspended connection, do not fail while connection is suspended and give
  1030. application one more chance to read data from buffer once connection is
  1031. resumed. -EG
  1032. Thu Mar 16 23:45:29 MSK 2017
  1033. Allow again to run MHD in external epoll mode by
  1034. MHD_run_from_select() - this allow unification of user code
  1035. and produce no harm for performance. Especially useful with
  1036. MHD_USE_AUTO flag. -EG
  1037. Thu Mar 16 23:12:07 MSK 2017
  1038. Idle connection should be disconnected *after* "timeout" number of
  1039. second, not *before* this number. -EG/VT
  1040. Thu Mar 16 22:31:54 MSK 2017
  1041. Unified update of last activity on connections.
  1042. Update last activity only if something is really transmitted.
  1043. Update last activity each time when something is transmitted.
  1044. Removed early duplicated check for timeout on HTTPS connections.
  1045. Removed update of last active time for connections without timeout.
  1046. Fixed reset of timeout timer on resumed connections.
  1047. Fixed never-expired timeouts on HTTPS connections.
  1048. Fixed thread-safety of MHD_set_connection_option(). -EG
  1049. Thu Mar 16 21:05:08 MSK 2017
  1050. Fixed minor bug resulted in slight slowdown of HTTPS connection
  1051. handshake. -EG
  1052. Thu Mar 16 20:35:59 MSK 2017
  1053. Improved thread-safety for DL-lists. -EG
  1054. Thu Mar 16 17:55:01 MSK 2017
  1055. Fixed thread-safety of MHD_get_daemon_info() for
  1056. MHD_DAEMON_INFO_CURRENT_CONNECTIONS. -EG
  1057. Thu Mar 16 16:49:07 MSK 2017
  1058. Added ability to get actual daemon flags via MHD_get_daemon_info().
  1059. Fixed test_upgrade to work in request mode.
  1060. Fixed compiler warnings in test_upgrade. -EG
  1061. Wed Mar 15 23:29:59 MSK 2017
  1062. Prevented socket read/write if connection is suspended.
  1063. Added missing resets of 'connection->in_idle'.
  1064. Reworked handling of suspended connection: ensure that
  1065. connection is not disconnected by timeout, always
  1066. updated read/write states right after suspending. -EG
  1067. Wed Mar 15 21:02:26 MSK 2017
  1068. Added new enum value MHD_CONNECTION_INFO_CONNECTION_TIMEOUT
  1069. to get connection timeout by MHD_get_connection_info(). -EG
  1070. Sat Mar 11 12:03:45 CET 2017
  1071. Fix largepost example from tutorial to properly generate
  1072. error pages. -CG
  1073. Fix largepost example, must only queue replies either before upload
  1074. happens or after upload is done, not while upload is ongoing
  1075. Fri Mar 10 16:37:12 CET 2017
  1076. Fix hypothetical integer overflow for very, very large
  1077. timeout values. -CG
  1078. Fri Mar 10 16:22:54 CET 2017
  1079. Handle case that we do not listen at all more gracefully
  1080. in MHD_start_daemon() and not pass '-1' to helper functions
  1081. that expect a valid socket. -CG
  1082. Tue Mar 7 12:11:44 BRT 2017
  1083. Updates file `.gitignore`.
  1084. Tue Mar 7 10:37:45 BRT 2017
  1085. Updated the MHD_OPTION_URI_LOG_CALLBACK's documentation.
  1086. Mon Mar 6 21:46:59 BRT 2017
  1087. Added the i18n example fixing #4924. -SC
  1088. Wed Mar 1 23:47:05 CET 2017
  1089. Minor internal optimisations.
  1090. Changed closure connection monitoring logic: now all connections are
  1091. monitored for OOB data (which treated as error), connections are not
  1092. monitored any more for incoming data if incoming data is not required for
  1093. processing. except_fd_set is not optional now for MHD_get_fdset(),
  1094. MHD_get_fdset2() and MHD_run_from_select().
  1095. Improved connection processing in epoll mode: now connection can process
  1096. both read and write each turn.
  1097. Updated HTTP response codes; updated and added all missing standard HTTP
  1098. headers names (and headers categories); updated and added all missing
  1099. standard and additional HTTP methods. Now MHD return status
  1100. MHD_HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE (431) instead of old
  1101. MHD_HTTP_REQUEST_ENTITY_TOO_LARGE (413) for very long header.
  1102. Reworked handling of data pending in TLS buffers, resolved busy-waiting
  1103. if incoming data is pending in TLS buffers and connection is in
  1104. LOOP_INFO_WRITE mode.
  1105. Do not clear 'ready' flag in epoll mode if send()/recv() result is
  1106. EINTERRUPTED.
  1107. Better detection of unready connection state: used less number of calls of
  1108. recv()/send() in epoll mode.
  1109. Configure: do not run gcrypt and GnuTLS tests if HTTPS is disabled by
  1110. configure parameter.
  1111. Fixed wrong value returned by MHD_get_timeout().
  1112. All double-linked lists now walked from tail to head. As new items are
  1113. added to head, this result in more uniform processing time.
  1114. Improved sockets errors handling in epoll mode.
  1115. OOB data on 'upgraded' sockets is treated as error. -EG
  1116. Thu Feb 16 11:20:05 CET 2017
  1117. Replace tsearch configure check with code from gnulib. -CG
  1118. Wed Feb 15 13:35:36 CET 2017
  1119. Fixing a few very rare race conditions for thread-pool or
  1120. thread-per-connection operations during shutdown.
  1121. Various minor cosmetic improvements.
  1122. Fixed #4884 and #4888 (solaris portability issues). -CG
  1123. Wed Feb 08 22:33:10 MSK 2016
  1124. Ported test_quiesce_stream to W32.
  1125. Improved precompiler flags selection of OpenBSD.
  1126. Fixed sending responses backed by files not supported by sendfile().
  1127. Fixed thread safety for responses backed by file FD.
  1128. Updated fileserver_example.
  1129. Improved handling of 'upgraded' TLS forwarding in select() and poll()
  1130. modes.
  1131. Fixed processing of incoming TLS data in epoll mode if more than 128
  1132. connections are active.
  1133. Fixed accepting more than 128 incoming connection in epoll mode.
  1134. Improved test_large_put, added poll() and epoll testing.
  1135. Added test_large_put_inc for testing of incremental buffer processing.
  1136. Rewritten epoll connection processing logic: handle all connection one
  1137. time per turn instead of trying to handle all active connection until all
  1138. pending data is dried. Result is more uniform connection processing
  1139. period. -EG
  1140. Wed Nov 23 15:24:10 MSK 2016
  1141. Used SO_REUSEADDR (on non-W32) alongside with SO_REUSEPORT if option
  1142. MHD_OPTION_LISTENING_ADDRESS_REUSE was set. -EG
  1143. Wed Nov 23 12:48:23 MSK 2016
  1144. Move all gettext-related staff to 'po' subdirectory.
  1145. Excluded gettext files generation from normal build.
  1146. Removed generated files from GIT. -EG
  1147. Tue Nov 15 19:08:43 MSK 2016
  1148. Fixed forwarding "upgraded" TLS connections for
  1149. chunks sizes larger than buffer size. -EG
  1150. Mon Nov 14 22:18:30 MSK 2016
  1151. Fixed unintentional usage of SO_REUSEADDR on W32.
  1152. Added support for SO_EXCLBIND on Solaris.
  1153. Fixed using MHD with MHD_OPTION_LISTENING_ADDRESS_REUSE
  1154. on Linux kernels before 3.9 (longterm 3.2 and 3.4
  1155. are still supported). -EG
  1156. Sun Nov 13 19:16:38 CET 2016
  1157. Fixed a few race issues on suspend-resume in cases where the
  1158. application uses threads even though MHD did not (or at least
  1159. had no internal need for locking). Also fixed DLL handling of
  1160. the timeout list, avoiding manipulating it for suspended
  1161. connections. Finally, eliminated calling application logic
  1162. on suspended connections (which before could happen under
  1163. certain circumstances). -CG
  1164. Thu Nov 11 20:49:23 MSK 2016
  1165. Added support for various forms of
  1166. pthread_attr_setname_np() so thread names will be set
  1167. more efficiently on certain platforms (Solaris, NetBSD etc.) -EG
  1168. Thu Nov 10 21:50:35 MSK 2016
  1169. Added rejection in MHD_start_daemon() of invalid combinations
  1170. of daemon flags.
  1171. Added MHD_USE_AUTO and MHD_USE_AUTO_INTERNAL_THREAD for
  1172. automatic selection of polling function depending on
  1173. platform capabilities and requested mode. -EG
  1174. Thu Nov 10 17:49:56 MSK 2016
  1175. Ported "upgrade" tests to W32 and other platforms, used
  1176. "gnutls-cli" instead of "openssl" in tests, minor bugs
  1177. fixed, added verbose reporting if requested.
  1178. "Upgrade" processing - changed internal handling logic, improved
  1179. and refactored, bugs fixed, fixed sigpipe on Darwin, added
  1180. printing error to log, fixed compilation without HTTPS.
  1181. Added 'configure' parameter "--disable-httpupgrade" for building
  1182. minimal-sized MHD versions.
  1183. Added feature check "MHD_FEATURE_UPGRADE".
  1184. Responses destroyed (freed) earlier if possible.
  1185. Added many remarks in code comments about thread safety.
  1186. Some data races and other multithread-related issues are fixed,
  1187. including usage of closed sockets (may resulted in accidental closing
  1188. of wrong socket).
  1189. SO_NOSIGPIPE is used on all platform which support it, not only
  1190. on Darwin.
  1191. Added support for suspending connections in thread-per-connection
  1192. mode (itself almost useless, mostly to unify modes support).
  1193. Fixed Inter-Thread Communication channel usage in epoll modes.
  1194. Reworked daemon cleanups and handling MHD_stop_daemon(): resources
  1195. are freed only by specific threads, data races and other fixes.
  1196. Started usage of C99 standard 'bool' where supported with
  1197. fallback to 'int'.
  1198. Renamed many MHD flags. Now they are self-explainable and more
  1199. obvious, like MHD_USE_INTERNAL_POLLING_THREAD instead of
  1200. MHD_USE_SELECT_INTERNALLY. Old flag names are supported for
  1201. backward compatibility.
  1202. Improved processing of "fast" connections: now full sequence
  1203. "read request - send reply headers - send reply body" is processed
  1204. after single select()/poll(). If connection is slow, request is huge
  1205. or response in not immediately ready - connection will be processed
  1206. in "traditional" way.
  1207. Added usage of "calloc()" where supported.
  1208. Minor documentation fixes.
  1209. Minor improvements and fixes. -EG
  1210. "Upgrade" test fixes.
  1211. Documentation updated.
  1212. Added HTTP "Upgrade" example. -CG
  1213. Mon Oct 17 19:08:18 CEST 2016
  1214. Fixed misc. issues relating to upgrade.
  1215. Releasing experimental 0.9.52. -CG
  1216. Wed Oct 12 14:26:20 CEST 2016
  1217. Migrated repository from Subversion to Git. -CG
  1218. Tue Oct 11 18:09:56 CEST 2016
  1219. Deprecated MHD_USE_SSL, use MHD_USE_TLS instead. -CG
  1220. Tue Oct 11 18:14:40 MSK 2016
  1221. Code internal refactoring: 'pipes' renamed to 'inter-thread
  1222. communication (channels)/ITCs', as code can use different types
  1223. of communications.
  1224. Optimizations: ITCs now always created in non-blocking mode.
  1225. Added configure parameter to choose ITC type.
  1226. Updated documentation and comments.
  1227. Minor errors fixed (related to heavy load). -EG
  1228. Thu Sep 22 17:51:04 CEST 2016
  1229. Implementing support for eventfd() instead of pipe() for
  1230. signaling (on platforms that support it); fixing #3557. -CG
  1231. Thu Sep 22 11:03:43 CEST 2016
  1232. Simplify internal error handling logic by folding it into the
  1233. MHD_socket_close_, MHD_mutex_lock_, MHD_mutex_unlock_ and
  1234. MHD_mutex_destroy_ functions. -CG
  1235. Tue Sep 13 22:20:26 MSK 2016
  1236. Added autoconf macro to enable maximum platform
  1237. features. Fixed compiling on Solaris. -EG
  1238. Wed Sep 7 12:57:57 CEST 2016
  1239. Fixing #4641. -Hawk
  1240. Wed Sep 7 00:28:59 CEST 2016
  1241. Adding remaining "_"-markups for i18n (#4614). -CG
  1242. Tue Sep 6 23:39:56 CEST 2016
  1243. Allow out-of-order nonces for digest authentication (#4636). -CG
  1244. Tue Sep 6 21:29:09 CEST 2016
  1245. Martin was right, "socket_context" should be "void *"
  1246. in `union MHD_ConnectionInfo`. -MS
  1247. Sun Sep 4 18:16:32 CEST 2016
  1248. Fixing potential memory leak (#4634). -CG
  1249. Sun Sep 4 17:25:45 CEST 2016
  1250. Tests for "Upgrade" logic are now in place and passing.
  1251. However, still need to make sure code is portable. -CG
  1252. Sat Sep 3 11:56:20 CEST 2016
  1253. Adding logic for handling HTTP "Upgrade" in thread-per-connection
  1254. mode. Also still untested. -CG
  1255. Sat Aug 27 21:01:43 CEST 2016
  1256. Adding a few extra safety checks around HTTP "Upgrade"
  1257. (against wrong uses of API), and a testcase. -CG
  1258. Sat Aug 27 20:07:53 CEST 2016
  1259. Adding completely *untested* logic for HTTP "Upgrade"
  1260. handling. -CG
  1261. Sat Aug 27 18:20:38 CEST 2016
  1262. Releasing libmicrohttpd 0.9.51. -CG
  1263. Tue Aug 23 22:54:07 MSK 2016
  1264. Internal refactoring: W32 compatibility layer was finally
  1265. replaced with several specialized abstraction layers for
  1266. sockets, control pipes (inter-thread communication) and
  1267. generic functions. Now all major platform functions
  1268. (including threads and mutex) are implemented in thin
  1269. abstraction layers.
  1270. Improved performance on W32 due to eliminating
  1271. translation of error to POSIX codes and using W32 codes
  1272. directly (through macros).
  1273. Improved error reporting on all platforms.
  1274. Improved error handling and reporting on Darwin.
  1275. Minor fixes. -EG
  1276. Tue Aug 16 15:14:30 MSK 2016
  1277. Minor improvement for monotonic clock.
  1278. Minor configure fix for non-bash shells. -EG
  1279. Mon Aug 15 13:06:52 CEST 2016
  1280. Fixed possible crash due to write to read-only region of
  1281. memory given ill-formed HTTP request (write was otherwise
  1282. harmless, writing 0 to where there was already a 0).
  1283. Fixed issue with closed connection slots not immediately
  1284. being available again for new connections if we reached
  1285. our connection limit.
  1286. Avoid even accept()ing connections in certain thread modes
  1287. if we are at the connection limit and
  1288. MHD_USE_PIPE_FOR_SHUTDOWN is available. -CG
  1289. Wed Aug 10 16:42:57 MSK 2016
  1290. Moved threads, locks and mutex abstraction to separate files,
  1291. some minor errors fixed, added support for thread name functions
  1292. on various platforms, added configure flag for disable thread
  1293. naming. -EG
  1294. Sat Jul 23 20:45:51 CEST 2016
  1295. Added macro detection of speed/size compiler optimization.
  1296. Added different implementation of functions in mhd_str.c for
  1297. size optimization. Enabled automatically if compiler size
  1298. optimization is detected or MHD_FAVOR_SMALL_CODE is defined.
  1299. Added unit tests for all mhd_str.c functions. -EG
  1300. Sat Jul 16 21:54:49 CEST 2016
  1301. Warn user if they sent connection into blocking
  1302. state by not processing all POST data, not suspending,
  1303. and not running in external select mode. -CG
  1304. Fri Jul 8 21:35:07 CEST 2016
  1305. Fix FIXME in tutorial. -CG
  1306. Fri Jul 8 15:57:06 CEST 2016
  1307. Adding support for 308 status code. -CG
  1308. Sat Jun 25 13:49:31 CEST 2016
  1309. Use shutdown to trigger select on NetBSD. -EG
  1310. Thu Jun 2 09:55:50 CEST 2016
  1311. Releasing libmicrohttpd 0.9.50. -CG
  1312. Wed Jun 1 21:59:34 CEST 2016
  1313. Do not send "Content-Length" header for 1xx/204/304 status codes. -CG
  1314. Tue May 17 13:32:21 CEST 2016
  1315. Allow clients to determine whether a connection is suspended;
  1316. introduces MHD_CONNECTION_INFO_CONNECTION_SUSPENDED. -CG/FC
  1317. Sun May 15 12:17:25 CEST 2016
  1318. Fix handling system or process resource limit exhaustion upon
  1319. accept(). -CG/CP
  1320. Thu May 12 08:42:19 CEST 2016
  1321. Fix handling of partial writes in MHD_USE_EPOLL_LINUX_ONLY; only
  1322. consider sockets returning EAGAIN as unready. -CG/CP
  1323. Mon May 2 06:08:26 CEST 2016
  1324. Adding logic to help address FE performance issue as
  1325. discussed on the mailinglist with subject
  1326. "single-threaded daemon, multiple pending requests, responses batched".
  1327. The new logic is only enabled when MHD_USE_EPOLL_TURBO is set.
  1328. Note that some additional refactoring was also done to clean up
  1329. the code and avoid code duplication, which may have actually fixed
  1330. an unrelated issue with HTTPS and a POLL-style event loop. -CG
  1331. Sat Apr 30 10:22:37 CEST 2016
  1332. Added clarifications to manual based on questions on list. -CG
  1333. Sat Apr 23 20:12:01 CET 2016
  1334. Tests perf_get_concurrent and test_concurrent_stop ported to use
  1335. pthread instead of fork(). Added more error detections. -EG
  1336. Sat Apr 23 16:06:30 CET 2016
  1337. Improved test_quiesce test. -EG
  1338. Sat Apr 23 15:39:38 CET 2016
  1339. Notify other threads in MHD_quiesce_daemon() so listen socket FD
  1340. is removed from awaiting select() and poll(). -EG
  1341. Sat Apr 23 14:17:15 CET 2016
  1342. Revert "shutdown trigger select" on Darwin. Fixed daemon shutdown
  1343. on Darwin without "MHD_USE_PIPE_FOR_SHUTDOWN" option. -EG
  1344. Fri Apr 22 14:29:28 CET 2016
  1345. Fixed race conditions when stopping quiesced daemon with thread
  1346. pool. -EG
  1347. Wed Apr 20 18:12:30 CET 2016
  1348. Fixed macros in sysfdsetsize.c which could prevent compiling with
  1349. non-default FD_SETSIZE.
  1350. Fixed comments in mhd_str.c.
  1351. Updated test_post.c to not ignore specific error on W32 if libcurl
  1352. is built with workaround for WinSock bug. -EG
  1353. Mon Apr 18 19:35:14 CET 2016
  1354. Fixed data races leading to inability in rare situations to
  1355. resume suspended connection. -EG
  1356. Tue Apr 13 21:46:01 CET 2016
  1357. Removed unneeded locking for global timeout list in
  1358. MHD_USE_THREAD_PER_CONNECTION mode.
  1359. Added 'simplepost' and 'largepost' examples to VS projects.
  1360. Added strtoXX() locale-independent replacement functions.
  1361. Added more error checking and minor fixes in digest auth
  1362. functions - should improve security.
  1363. Ignored specific errors in 'test_post' test until libcurl
  1364. will implement workaround for WinSock bug.
  1365. Fixed handling of caller-supplied socket with
  1366. MHD_OPTION_LISTEN_SOCKET (regression in 0.9.49).
  1367. Minor fixes.
  1368. Various cosmetics and comments fixes. -EG
  1369. Sat Apr 09 13:05:42 CET 2016
  1370. Releasing libmicrohttpd 0.9.49. -EG
  1371. Fri Apr 08 18:32:17 CET 2016
  1372. Some minor internal fixes, addition error checking and
  1373. micro optimizations.
  1374. Reworked usage of sockets shutdown() - now work equally
  1375. on all platforms, disconnection should be "more graceful". -EG
  1376. Tue Mar 15 21:52:27 CET 2016
  1377. Do not crash if pthread_create() fails. -DD
  1378. Tue Mar 15 20:29:34 CET 2016
  1379. Do not use eready DLL data structure unless
  1380. we are actually using epoll(). -DD/CG
  1381. Fri Feb 5 20:43:11 CET 2016
  1382. Fixed testsuite compile warning on W32.
  1383. Added check test for triggering poll() on
  1384. listen socket. -EG
  1385. Thu Feb 4 11:38:11 CET 2016
  1386. Added some buffer overrun protection.
  1387. Fixed handling of malformed URI with spaces. -EG
  1388. Wed Feb 3 15:41:57 CET 2016
  1389. Make signal-pipe non-blocking and drain it. -CG
  1390. Sat Jan 30 15:49:07 CET 2016
  1391. Fix running select() with empty fdsets on W32. -EG
  1392. Mon Jan 25 13:45:50 CET 2016
  1393. Added check test for triggering select() on
  1394. listen socket. -EG
  1395. Thu Jan 21 19:35:18 CET 2016
  1396. Fixed old bug with making sockets non-blocking on
  1397. various platforms so now sockets are really
  1398. non-blocking on all supported platforms.
  1399. Reworked and fixed code for using SOCK_CLOEXEC,
  1400. SOCK_NONBLOCK and EPOLL_CLOEXEC resulting in
  1401. fewer used system calls. -EG
  1402. Tue Jan 19 20:59:59 CET 2016
  1403. Cleaned up and optimized with minor fixes code for
  1404. making sockets non-blocking non-inheritable. -EG
  1405. Tue Jan 19 11:14:18 CET 2016
  1406. Removed workaround for Cygwin non-blocking sockets:
  1407. handling non-blocking sockets were fixed in Cygwin
  1408. and libmicrohttpd how uses non-blocking sockets on
  1409. all platforms. -EG
  1410. Mon Jan 18 23:54:45 CET 2016
  1411. Cleaned up examples to avoid giving oversimplified code
  1412. that may lead to complications if adopted naively. -CG
  1413. Sun Jan 17 11:18:55 CET 2016
  1414. Do no refuse to send response if sendfile() failed with
  1415. EINVAL (common error for files located on SMB/CIF). -EG
  1416. Sat Jan 16 19:14:39 CET 2016
  1417. Use US-ASCII only (instead of user locale settings) when
  1418. performing caseless string comparison as required by
  1419. standard. -EG
  1420. Tue Jan 12 16:10:09 CET 2016
  1421. Fixed declaraion of MHD_get_reason_phrase_for(). -EG
  1422. Mon Jan 11 19:58:50 CET 2016
  1423. Configure.ac small fixes and refactoring. -EG
  1424. Fri Dec 18 15:54:50 CET 2015
  1425. Releasing libmicrohttpd 0.9.48. -CG
  1426. Tue Dec 15 18:35:55 CET 2015
  1427. Improved compatibility with VS2010 and other older
  1428. compilers. -EG
  1429. Tue Dec 8 21:48:44 CET 2015
  1430. Default backlog size for listen socket was changed from
  1431. 32 to SOMAXCONN, added new option MHD_OPTION_LISTEN_BACKLOG_SIZE
  1432. to override default backlog size.
  1433. If not all connections can be handled by MHD_select() than
  1434. at least some of connections will be processed instead of
  1435. failing without any processing.
  1436. Fixed redefenition of FD_SETSIZE on W32 so select() will
  1437. work with 2000 connections instead of 64.
  1438. Better handled redefenition of FD_SETSIZE on all
  1439. platforms. -EG
  1440. Sat Dec 5 17:30:45 CET 2015
  1441. Close sockets more aggressively in multi-threaded
  1442. mode (possibly relevant for idle servers). -CG
  1443. Fri Dec 4 13:53:05 CET 2015
  1444. Releasing libmicrohttpd 0.9.47. -CG
  1445. Thu Dec 3 18:21:44 CET 2015
  1446. Reworked VS project files. Used x64 build tools by
  1447. default, many optimizations, fixes.
  1448. Added project files for VS 2015. -EG
  1449. Tue Dec 1 14:05:13 CET 2015
  1450. SPDY is dead, killing experimental libmicrospdy. -CG
  1451. Tue Dec 1 10:01:12 CET 2015
  1452. New logic for controlling socket buffer modes.
  1453. Eliminated delay before last packet in response and before
  1454. "100 Continue" response on all platforms. Also response
  1455. header are pushed to client without waiting for response
  1456. body. -EG
  1457. Wed Nov 25 17:02:53 CET 2015
  1458. Remove 200ms delay observable with keep-alive on Darwin
  1459. and *BSD platforms. -EG
  1460. Tue Nov 10 15:25:48 CET 2015
  1461. Fix issue with shutdown if connection was resumed just
  1462. before shutdown. -FC
  1463. Fri Nov 6 22:54:38 CET 2015
  1464. Fixing the buffer shrinkage issue, this time with test. -CG
  1465. Releasing libmicrohttpd 0.9.46. -CG
  1466. Tue Nov 3 23:24:52 CET 2015
  1467. Undoing change from Sun Oct 25 15:29:23 CET 2015
  1468. as the original code was counter-intuitive but
  1469. correct, and the new code does break pipelining.
  1470. Ignore empty lines at the beginning of an HTTP
  1471. request (more tolerant implementation). -CG
  1472. Sat Oct 31 15:52:52 CET 2015
  1473. Releasing libmicrohttpd 0.9.45. -CG
  1474. Tue Oct 27 12:08:02 CET 2015
  1475. Rework deprecation maros: fix errors with old GCC versions,
  1476. improved support for old clang and new GCC. -EG
  1477. Sun Oct 25 23:05:32 CET 2015
  1478. Return correct header kind in MHD_get_connection_values()
  1479. even if a bitmask is used for the "kind" argument. -FC/CG
  1480. Sun Oct 25 15:29:23 CET 2015
  1481. Fixing transient resource leak affecting long-lived
  1482. connections with a lot of keep-alive and HTTP request
  1483. pipelining under certain circumstances (which reduced
  1484. the receive window).
  1485. Fixed assertion failure triggered by a race in
  1486. thread-per-connection mode on shutdown in rare
  1487. circumstances. -CG
  1488. Mon Oct 5 11:53:52 CEST 2015
  1489. Deduplicate code between digestauth and connection
  1490. parsing logic for URI arguments, shared code moved
  1491. to new MHD_parse_arguments_ function in internal.c. -CG
  1492. Thu Oct 1 21:22:05 CEST 2015
  1493. Releasing libmicrohttpd 0.9.44. -CG
  1494. Wed Sep 30 21:05:38 CEST 2015
  1495. Various fixes for W32 VS project files. -EG
  1496. Fri Sep 25 09:49:10 CEST 2015
  1497. Fix digest authentication with URL arguments where
  1498. value-less keys are given before the last argument.
  1499. Thanks to MA for reporting. -CG
  1500. Tue Sep 22 19:17:54 CEST 2015
  1501. Do not use shutdown() on listen socket if MHD_USE_PIPE_FOR_SHUTDOWN
  1502. is set. -CG
  1503. Wed Sep 16 11:06:02 CEST 2015
  1504. Releasing libmicrohttpd 0.9.43. -CG
  1505. Wed Sep 2 16:50:31 CEST 2015
  1506. Call resume_suspended_connections() when the user is running
  1507. its own mainloop and calls MHD_run_from_select() to support
  1508. resuming connections with external select. -FC
  1509. Sun Aug 30 14:53:51 CEST 2015
  1510. Correct documentation as to when MHD_USE_EPOLL_LINUX_ONLY
  1511. is allowed. -CG
  1512. Thu Aug 27 09:38:44 CEST 2015
  1513. Reimplement monotonic clock functions for better
  1514. support various platforms.
  1515. Print more information during configure. -EG
  1516. Fri Aug 14 14:13:55 CEST 2015
  1517. Export MHD_get_reason_phrase_for() symbol. -CG
  1518. Sat Aug 8 12:19:47 CEST 2015
  1519. Added checks for overflows and buffer overruns, fixed
  1520. possible buffer overrun.
  1521. Updated md5 implementation.
  1522. Fixed many compiler warning (mostly for VC compiler). -EG
  1523. Tue Aug 4 13:50:23 CEST 2015
  1524. Fix failure to properly clean up timed out connections
  1525. if running in external select mode without listen socket,
  1526. which caused busy waiting until new connections arrived.
  1527. (Fixes #3924, thanks to slimp for reporting and testcase). -CG
  1528. Sun Aug 2 19:08:20 CEST 2015
  1529. Ignore close() errors on sockets except for EBADF,
  1530. fixes #3926. -CG
  1531. Sat Jun 27 22:16:27 CEST 2015
  1532. Make sure to decrement connection counter before
  1533. calling connection notifier so that
  1534. MHD_DAEMON_INFO_CURRENT_CONNECTIONS does not
  1535. present stale information (relevant if this is
  1536. used for termination detection of a daemon
  1537. stopped via MHD_quiesce_daemon()). Thanks to
  1538. Markus Doppelbauer for reporting. -CG
  1539. Fri Jun 26 23:17:20 CEST 2015
  1540. Fix (automatic) handling of HEAD requests with
  1541. MHD_create_response_from_callback() and HTTP/1.1
  1542. connection keep-alive. Thanks to Cristian Klein
  1543. for reporting. -CG
  1544. Tue Jun 09 18:30:17 CEST 2015
  1545. Add new functions MHD_create_response_from_fd64() and
  1546. MHD_create_response_from_fd_at_offset64(). -EG
  1547. Thu Jun 4 13:37:05 CEST 2015
  1548. Fixing memory leak in digest authentication. -AW
  1549. Wed Jun 03 21:23:47 CEST 2015
  1550. Add deprecation compiler messages for deprecated functions
  1551. and macros. -EG
  1552. Fri May 29 12:23:01 CEST 2015
  1553. Fixing digest authentication when used in combination
  1554. with escaped characters in URLs. -CG/AW
  1555. Wed May 13 11:49:09 CEST 2015
  1556. Releasing libmicrohttpd 0.9.42. -CG
  1557. Wed May 13 11:33:59 CEST 2015
  1558. Fix off-by-one in MHD_start_daemon_va() error handling logic
  1559. when initialization of threads for thread pool fails for some
  1560. reason. -CG/JC
  1561. Thu May 7 17:05:46 CEST 2015
  1562. Add support for poll() in W32. -EG
  1563. Wed May 6 18:07:38 CEST 2015
  1564. Fix #3784: actually implement MHD_CONNECTION_INFO_SOCKET_CONTEXT. -asherkin
  1565. Thu Apr 30 00:03::49 CEST 2015
  1566. Releasing libmicrohttpd 0.9.41. -CG
  1567. Thu Apr 30 00:02:33 CEST 2015
  1568. Fix issue where resumed connections would not continue
  1569. unless other requests are active in certain
  1570. event-loop modes. Thanks to Mike Castillo for reporting. -CG
  1571. Wed Apr 15 03:16:18 CEST 2015
  1572. Fixing issue #3753 (testcase issue). -CG
  1573. Wed Apr 15 00:30:34 CEST 2015
  1574. Fix looping issue when using MHD_USE_POLL_INTERNALLY
  1575. and a client times out. -LB
  1576. Sun Apr 12 21:48:50 CEST 2015
  1577. Fix looping issue when combining MHD_USE_EPOLL_LINUX_ONLY
  1578. with HTTPS and slow clients. -CG
  1579. Fri Apr 10 22:02:27 CEST 2015
  1580. Fix logic to add "Connection: Close" that was broken in 0.9.38
  1581. when adding MHD_RF_HTTP_VERSION_1_0_ONLY. -CG
  1582. Fri Apr 10 00:38:40 CEST 2015
  1583. Ensure fast termination in MHD_USE_THREAD_PER_CONNECTION
  1584. mode on W32 by using signal pipe. -CG
  1585. Thu Apr 9 09:01:15 CEST 2015
  1586. Fixing issue with undrained signal pipe when using
  1587. MHD_USE_SELECT_INTERNALLY and MHD_USE_POLL in combination
  1588. with MHD_resume_connection(), causing 100% CPU usage. -DD
  1589. Tue Apr 7 00:12:36 CEST 2015
  1590. Releasing libmicrohttpd 0.9.40. -CG
  1591. Sat Apr 4 18:28:24 CEST 2015
  1592. Fix potential deadlock issue in MHD_USE_THREAD_PER_CONNECTION
  1593. mode if shutdown is initiated while connections are active. -CG
  1594. Sat Apr 4 17:48:13 CEST 2015
  1595. Fix issue in thread-pool mode where a MHD_stop_daemon()
  1596. might not reach threads that stopped listening because
  1597. we hit the maximum number of concurrent connections and
  1598. the option MHD_USE_PIPE_FOR_SHUTDOWN was also not used.
  1599. Testcase added as well. -CG
  1600. Fri Apr 3 12:55:31 CEST 2015
  1601. Update HTTPS testcases to avoid SSLv3, as SSLv3 is dead.
  1602. Fri Apr 3 12:25:28 CEST 2015
  1603. Do not enforce FD_SETSIZE-limit on worker control
  1604. pipe when using MHD_USE_EPOLL_LINUX_ONLY (#3751). -MH/CG
  1605. Tue Mar 31 10:28:26 CEST 2015
  1606. Adding MHD_OPTION_NOTIFY_CONNECTION,
  1607. MHD_CONNECTION_NOTIFY_STARTED,
  1608. MHD_CONNECTION_NOTIFY_CLOSED and
  1609. MHD_CONNECTION_INFO_SOCKET_CONTEXT to allow
  1610. applications to trigger operations when TCP
  1611. connections start or end, instead of just
  1612. exposing HTTP requests starting and ending. -RG/CG
  1613. Thu Feb 26 09:55:43 CET 2015
  1614. Fixing bug that prevented MHD_OPTION_HTTPS_MEM_DHPARAMS
  1615. from working within a MHD_OPTION_ARRAY. -DD
  1616. Sun Feb 8 01:24:38 CET 2015
  1617. Adding MHD_OPTION_HTTPS_KEY_PASSWORD as proposed by
  1618. Andrew Basile. -CG/AB
  1619. Wed Feb 4 20:34:22 CET 2015
  1620. Fix issue where for HTTP/1.0-clients that set
  1621. Connection: Keep-Alive header a response of
  1622. indefinite size was generated with chunked encoding. -CG
  1623. Sun Jan 18 20:09:06 CET 2015
  1624. Fix potential infinite loop on shutdown in multi-threaded mode
  1625. under certain conditions. -CG
  1626. Mon Dec 22 16:33:18 CET 2014
  1627. Releasing 0.9.39. -CG
  1628. Mon Dec 22 13:02:36 CET 2014
  1629. Fix generated compiler flags for Solaris Studio linker (#3584). -CG
  1630. Sat Dec 20 00:35:40 CET 2014
  1631. Adding MHD_http_unescape() to public API (#3585). -CG
  1632. Updating documentation to document
  1633. MHD_is_feature_supported(). -CG
  1634. Thu Dec 4 00:43:10 CET 2014
  1635. If "Connection: upgrade" is requested, do not add
  1636. "Connection: Keep-Alive" in the response. -GJ
  1637. Tue Nov 18 13:52:29 CET 2014
  1638. Call MHD_cleanup_connections() during MHD_DAEMON_INFO_CURRENT_CONNECTIONS
  1639. processing for more accurate results. -MS
  1640. Wed Oct 29 20:45:21 CET 2014
  1641. Adding MHD_OPTION_LISTENING_ADDRESS_REUSE option allowing clients
  1642. to force allowing re-use of the address:port combination
  1643. (SO_REUSEPORT). -MS
  1644. Wed Oct 29 16:27:05 CET 2014
  1645. Adding MHD_DAEMON_INFO_CURRENT_CONNECTIONS to allow clients
  1646. to query the number of active connections. -MS
  1647. Fri Oct 3 14:28:58 CEST 2014
  1648. Releasing 0.9.38. -CG
  1649. Mon Sep 29 22:25:34 CEST 2014
  1650. Properly decode '+' in URL-encoded POST data. -CG/KM
  1651. Fri Sep 12 17:32:09 CEST 2014
  1652. Fix --disable-dauth configure option (#3543). -doostee
  1653. Thu Jun 26 21:06:04 CEST 2014
  1654. Fix failure to terminate 'instantly' in thread-per-connection
  1655. mode if there is a client with open connections.
  1656. Thanks to Kenneth Mastro for reporting. -CG
  1657. Sun Jun 22 12:22:08 CEST 2014
  1658. Actually, avoid locking on response as responses must
  1659. not be modified in a connection-specific way; instead
  1660. modify the connection's data buffer to add missing
  1661. responses headers. If we are forced to add
  1662. "Connection: close", suppress output of conflicting
  1663. application-provided "Connection: Keep-Alive" header. -CG
  1664. Sun Jun 22 00:22:08 CEST 2014
  1665. Lock on response if adding headers, needed if response
  1666. object is shared across threads and connections. -CG
  1667. Thu Jun 19 17:32:32 CEST 2014
  1668. Ensure that listen FD is bound to epoll FD even before
  1669. MHD_run() is called if running with MHD_USE_EPOLL_LINUX_ONLY
  1670. in combination with 'external select' mode. Thanks to
  1671. Marcos Pindado Sebastian for reporting. -CG
  1672. Sun Jun 8 15:10:44 CEST 2014
  1673. Add 'MHD_set_response_options' as a way to set per-response
  1674. flags. Add flag to force HTTP 1.0-only conservative
  1675. behavior, in particular suppressing adding "Connection"
  1676. headers. -CG
  1677. Mon Jun 2 00:03:28 CEST 2014
  1678. Added back unescaping for URI path (#3413) but without
  1679. unescaping '+' (#3371) to remain compatible with
  1680. MHD 0.9.34 and before. Note that applications providing
  1681. a custom MHD_OPTION_UNESCAPE_CALLBACK are no longer expected
  1682. to replace '+' with ' ', as that is now done separately for
  1683. the locations where this transformation is appropriate.
  1684. Releasing 0.9.37. -CG
  1685. Wed May 28 15:30:56 CEST 2014
  1686. Properly applying patch that was supposed to be
  1687. committed on "May 2 20:22:45 CEST 2014" to address
  1688. infinite loop (DoS) when HTTP connection is reset (#3392). -GM
  1689. Sun May 25 20:18:27 CEST 2014
  1690. Fixed W32 build issues. -EG
  1691. Releasing 0.9.36. -CG
  1692. Sat May 17 06:47:00 CEST 2014
  1693. Fix notifying client about completed request twice
  1694. under certain circumstances. -CG
  1695. Tue May 13 18:24:37 CEST 2014
  1696. Fix accidental transmission of footer termination '\r\n'
  1697. for responses with zero byte payload and non-chunked
  1698. encoding (#3397). Thanks to amatus for reporting. -CG
  1699. Sun May 4 11:05:26 CEST 2014
  1700. Fix gnutls header check to make it cross-compile aware. -BK
  1701. May 2 20:22:45 CEST 2014
  1702. Fix infinite loop (DoS) when HTTP connection is reset (#3392). -GM
  1703. Fix possible issue from combination of epoll and suspend/resume
  1704. logic if edge trigger event is lost; also simplify logic to
  1705. maintain simpler invariants on the epoll state. -CG
  1706. Use OpenSSL cipher list "HIGH" in libmicrospdy (#3391). -CG
  1707. Releasing 0.9.35. -CG
  1708. Thu Apr 10 09:39:38 CEST 2014
  1709. Removed unescaping for URI path (#3371) as '+' should not
  1710. be converted to space in accordance with
  1711. http://www.w3.org/TR/html401/appendix/notes.html#ampersands-in-uris
  1712. and http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1
  1713. Note that we now also no longer convert '#38;' to '&'; if needed,
  1714. the application needs to apply unescaping to the path of the URI
  1715. itself (before, MHD unescaped '#38;' but not '&amp;', so this
  1716. inconsistency was now resolved by simply not unescaping anything
  1717. before the first '&'). -CG
  1718. Tue Apr 08 15:35:44 CET 2014
  1719. Added support for W32 native threads.
  1720. Added --with-threads=LIB configure parameter. -EG
  1721. Mon Apr 7 13:25:30 CEST 2014
  1722. Add MHD_OPTION_HTTPS_MEM_DHPARAMS to allow applications
  1723. to enable PFS. -HB/CG
  1724. Tue Apr 01 07:10:23 CET 2014
  1725. Added usage of native mutex on W32. -EG
  1726. Sat Mar 29 16:12:03 CET 2014
  1727. Added MHD_is_feature_supported() function. -EG
  1728. Thu Mar 27 14:47:54 CET 2014
  1729. Used larger FD_SETSIZE internally on W32.
  1730. Extended API to work with non-default FD_SETSIZE. -EG
  1731. Tue Mar 25 12:53:55 CET 2014
  1732. Fix limiting by IPv6 address. -EG
  1733. Tue Mar 25 09:06:13 CET 2014
  1734. Added more FD_SETSIZE checks.
  1735. Implemented FD_SETSIZE checks for W32. -EG
  1736. Wed Mar 05 13:15:05 CET 2014
  1737. Cleanup and refactoring of configure.ac.
  1738. m4 macros updated.
  1739. Custom configure macros replaced with autoconf archive macros.
  1740. SPDY disabled by default on W32.
  1741. Changed configure flag from '--disable-pipe' to
  1742. '--enable-socketpair'.
  1743. Added configure flags '--disable-doc' and '--disable-examples'.
  1744. Narrowed down external lib specific compiler and linker flags
  1745. usage. -EG
  1746. Wed Feb 26 17:42:34 CET 2014
  1747. Refactoring of configure.ac: custom macros replaced with macros
  1748. from Autoconf Archive.
  1749. Minor corrections of configure.ac.
  1750. Excluded pthread flags from global flags, pthread now used only
  1751. where required.
  1752. W32: fixed .dll resource compilation with '-isystem' CPPFLAG.
  1753. W32: improved header compatibility with MSVC.
  1754. W32: now tested on Win64, compiled by MinGW-w64. -EG
  1755. Mon Feb 24 23:13:53 CET 2014
  1756. Added support for TCP FASTOPEN. -SHT
  1757. Releasing 0.9.34. -CG
  1758. Thu Feb 20 14:17:05 CET 2014
  1759. W32: Added creation of libmicrohttpd.lib, libmicrohttpd.def,
  1760. libmicrohttpd.exp and libmicrohttpd-static.lib for easy use
  1761. compiled MHD with MSVC.
  1762. W32: Use MS lib.exe tool if available for creating MSVC staff.
  1763. W32: Added .dll information resource. -EG
  1764. Tue Feb 18 19:46:45 CET 2014
  1765. Removed dependency on plibc for simpler compilation for W32.
  1766. Added configure option "--disable-pipes" to use socketpairs
  1767. instead of pipes for signalling to child threads. Pipes are
  1768. always disabled on W32.
  1769. Some code refactoring. -EG
  1770. Sat Feb 8 15:08:35 CET 2014
  1771. Corrected some uses of 'int' vs. 'size_t'. -EG/CG
  1772. Wed Jan 22 09:44:33 CET 2014
  1773. MHD_USE_DUAL_STACK in libmicrohttpd currently just *inhibits
  1774. setting* the IPV6_V6ONLY socket option, but per Microsoft's
  1775. documentation the default on Windows is that this is enabled, thus
  1776. MHD_USE_DUAL_STACK will not work (since it leaves the
  1777. default). libmicrohttpd should probably just unconditionally set
  1778. IPV6_V6ONLY to the desired value when the option is available. -LJ
  1779. Wed Jan 1 21:38:18 CET 2014
  1780. Allow Keep-Alive with HTTP 1.0 (if explicitly requested),
  1781. and automatically set "Connection: Keep-Alive" in response
  1782. in this case as well. -CG
  1783. Tue Dec 24 12:27:39 CET 2013
  1784. Adding explicit annotations to hide symbols that are not for
  1785. export in the C code (gcc 4.0 or higher only). -CG
  1786. Sun Dec 22 14:54:30 CET 2013
  1787. Adding a few lines to avoid warnings from picky compilers. -CG
  1788. Sat Dec 21 17:26:08 CET 2013
  1789. Fixed an issue with a missing argument in the postexample.
  1790. Fixed issue with bogus offset increment involving sendfile
  1791. on GNU/Linux. Adding support for SNI.
  1792. Releasing 0.9.33. -CG
  1793. Mon Dec 9 21:41:57 CET 2013
  1794. Fix for per-worker daemon pipes enabled with
  1795. MHD_USE_SUSPEND_RESUME that were not closed in
  1796. MHD_stop_daemon. -MH
  1797. Sat Dec 7 00:44:49 CET 2013
  1798. Fixing warnings and build issue if --disable-https is given
  1799. to configure. -CG
  1800. Tue Dec 3 21:25:56 CET 2013
  1801. Security fix: do not read past 0-terminator when unescaping
  1802. strings (thanks to Florian Weimer for reporting).
  1803. Releasing 0.9.32. -CG
  1804. Tue Dec 3 21:05:38 CET 2013
  1805. Signaling n times for shutdown works, but for resume we need to
  1806. wake up the correct daemon. Even if we signal n times in that
  1807. case also, there's no guarantee that some daemon can't run
  1808. through its select loop more than once before the daemon we want
  1809. to wake up gets a chance to read. Thus we need a signal pipe
  1810. per thread in the thread pool IF MHD_suspend_connection is used.
  1811. This introduces a new flag MHD_USE_SUSPEND_RESUME to add those
  1812. additional pipes and only allow MHD_suspend_connection to be
  1813. used in conjunction with this flag.
  1814. Also, as MHD_resume_connection() will be called on a non-daemon
  1815. thread, but none of the queue insert/delete calls are thread safe,
  1816. we need to be concerned about (a) corrupting the queue, and (b)
  1817. having to add mutex protection around every access to the queues,
  1818. including loops through timer queues, etc. This wasn't a problem
  1819. before adding resume; even suspend should be safe since it happens
  1820. in a callback from the daemon.
  1821. I think it's easier to (a) have MHD_suspend_connection() move the
  1822. connection to a suspended queue, (b) have MHD_resume_connection()
  1823. mark the connection as resuming, and then (c) do all the actual
  1824. queue manipulations in MHD_select (poll, epoll, etc.) to move the
  1825. resumed connections back to their normal queues, in response to
  1826. the wake up. The changes are simpler & cleaner. There is a cost to
  1827. the basic select loop that is avoided by making suspend/resume a
  1828. startup option. The per-worker pipes can then also be enabled only
  1829. with that option set. -MH
  1830. Fri Nov 29 20:17:03 CET 2013
  1831. Eliminating theoretical stack overflow by limiting length
  1832. of URIs in authentication headers to 32k (only applicable
  1833. if the application explicitly raised the memory limits,
  1834. and only applies to MHD_digest_auth_check). Issue was
  1835. reported by Florian Weimer. -CG
  1836. Tue Nov 26 01:26:15 CET 2013
  1837. Fix race on shutdown signal with thread pool on non-Linux
  1838. systems by signalling n times for n threads. -CG
  1839. Sun Nov 24 13:41:15 CET 2013
  1840. Introduce state to mark connections in suspended state (with
  1841. epoll); add missing locking operations in MHD_suspend_connection.
  1842. Fix definition of MHD_TLS_CONNECTION_INIT. -MH/JC
  1843. Wed Oct 30 09:34:20 CET 2013
  1844. Fixing issue in PostProcessor when getting partial boundary
  1845. at the beginning, expanding test suite. -CG
  1846. Sun Oct 27 15:19:44 CET 2013
  1847. Implementing faster processing of upload data in multipart
  1848. encoding (thanks to performance analysis by Adam Homolya). -CG
  1849. Thu Oct 24 10:40:03 CEST 2013
  1850. Adding support for connection flow control via
  1851. MHD_suspend_connection and MHD_resume_connection. -CG
  1852. Sat Oct 19 16:40:32 CEST 2013
  1853. Releasing libmicrohttpd 0.9.31. -CG
  1854. Mon Sep 23 20:24:48 CEST 2013
  1855. Fixing build issues on OS X with CLOCK_MONOTONIC not being
  1856. implemented on OS X. -CG
  1857. Mon Sep 23 14:15:00 CEST 2013
  1858. Make libmicrohttpd play nicely with upcoming libgcrypt 1.6.0. -CG
  1859. Fri Sep 20 17:01:37 CEST 2013
  1860. Improved configure checks for cURL. -CG
  1861. Wed Sep 18 18:29:24 CEST 2013
  1862. Signal connection termination as OK (and not as ERROR) if the
  1863. stream was terminated by the callback returning
  1864. MHD_CONTENT_READER_END_OF_STREAM. Also, release response
  1865. mutex before calling the termination callback, to avoid
  1866. possible deadlock if the client destroys the response in
  1867. the termination callback (due to non-recursiveness of the
  1868. lock). -CG
  1869. Wed Sep 18 14:31:35 CEST 2013
  1870. Adding #define MHD_HTTP_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN. -CG
  1871. Tue Sep 17 21:32:47 CEST 2013
  1872. Also pass MHD connection handle in URI log callback. -CG
  1873. Fri Sep 6 10:00:44 CEST 2013
  1874. Improved check for proper OpenSSL version for
  1875. libmicrospdy. -CG
  1876. Wed Sep 4 17:23:15 CEST 2013
  1877. Set IPV6_V6ONLY socket option correctly when IPv6 is
  1878. enabled (MHD_USE_IPv6) but not dual stack
  1879. (MHD_USE_DUAL_STACK) -MW
  1880. Mon Sep 2 22:59:45 CEST 2013
  1881. Fix use-after-free in epoll()-mode on read error.
  1882. Releasing libmicrohttpd 0.9.30. -CG
  1883. Sun Sep 1 21:55:53 CEST 2013
  1884. Fixing build issues on FreeBSD. -CG
  1885. Fri Aug 30 13:53:04 CEST 2013
  1886. Started to implement #3008 (RFC 2616, section 8.1.4
  1887. says HTTP server SHOULD terminate connection if the
  1888. client closes it for writing via TCP FIN, so we should
  1889. continue to try to read and react differently
  1890. if recv() returns zero). -CG
  1891. Wed Aug 28 18:40:47 CEST 2013
  1892. Fix #3007 (build issue if messages are disabled). -CG
  1893. Tue Aug 27 18:39:08 CEST 2013
  1894. Fix build issue if SOCK_NONBLOCK/EPOLL_CLOEXEC are not
  1895. defined (as is the case on older glibc versions). -CG
  1896. Fri Aug 23 14:28:02 CEST 2013
  1897. Releasing libmicrohttpd 0.9.29. -CG
  1898. Mon Aug 12 23:51:18 CEST 2013
  1899. Updated manual, documenting W32 select/shutdown issue. -CG
  1900. Sat Aug 10 21:01:18 CEST 2013
  1901. Fixed #2983. -CG
  1902. Sat Aug 10 20:39:27 CEST 2013
  1903. Use 'errno' to indicate why 'MHD_add_connection' failed
  1904. (#2984). -CG
  1905. Sat Aug 10 17:31:31 CEST 2013
  1906. Disable use of 'shutdown' on W32 always as winsock
  1907. doesn't properly behave with half-closed connections
  1908. (see http://www.chilkatsoft.com/p/p_299.asp). -CG/LRN
  1909. Thu Aug 8 07:55:07 CEST 2013
  1910. Fixing issue with pipelining not working as desired. -CG
  1911. Wed Aug 7 08:17:40 CEST 2013
  1912. Removing dependency on liberty (on W32). -MC
  1913. Fri Aug 2 20:55:47 CEST 2013
  1914. Fix HTTP 1.1 compliance with respect to not returning
  1915. content-length headers for successful "CONNECT" requests.
  1916. Note that for unsuccessful "CONNECT" requests with an
  1917. empty response body, users must now explicitly set the
  1918. content-length header. -CG
  1919. Sun Jul 28 16:35:17 CEST 2013
  1920. Fixing build issue (missing #ifdef) in conjunction with
  1921. --disable-messages. -blueness
  1922. Sat Jul 20 12:35:40 CEST 2013
  1923. Fixing combination of MHD_USE_SSL and MHD_USE_EPOLL_LINUX_ONLY. -CG
  1924. Fri Jul 19 09:57:27 CEST 2013
  1925. Fix issue where connections were not cleaned up when
  1926. 'MHD_run_from_select' was used. Adding experimental
  1927. TURBO mode.
  1928. Releasing libmicrohttpd 0.9.28. -CG
  1929. Sun Jul 14 19:57:56 CEST 2013
  1930. Removing 'shutdown' calls that happen just before close or
  1931. that are for read-only and for a client that has already
  1932. stopped sending anyway (thus reducing number of system calls
  1933. slightly). -CG
  1934. Sun Jul 14 19:37:37 CEST 2013
  1935. Name MHD worker threads on glibc >= 2.12. -,L4X[o](B
  1936. Fri Jul 5 12:05:01 CEST 2013
  1937. Added MHD_OPTION_CONNECTION_MEMORY_INCREMENT to allow users
  1938. to specify a custom value for incrementing read buffer
  1939. sizes (#2899). -MH
  1940. Fri Jun 28 14:05:15 CEST 2013
  1941. If we shutdown connection for reading on POST due to error,
  1942. really do not process further requests even if we already
  1943. read the next request from the connection. Furthermore, do
  1944. not shutdown connections for reading on GET/HEAD/etc. just
  1945. because the application queued a response immediately ---
  1946. reserve that behavior for PUT/POST. -CG
  1947. Tue Jun 25 15:08:30 CEST 2013
  1948. Added option 'MHD_USE_DUAL_STACK' to support a single
  1949. daemon for IPv4 and IPv6 without the application having
  1950. to do the binding. -CG
  1951. Mon Jun 24 22:33:34 CEST 2013
  1952. Finished integration with epoll, including benchmarking and
  1953. documentation. -CG
  1954. Sun Jun 23 15:28:13 CEST 2013
  1955. Added option 'MHD_USE_PIPE_FOR_SHUTDOWN' to cleanly support
  1956. 'MHD_quiesce_daemon' with thread pools and per-connection
  1957. threads (we then need a pipe for shutdown, but if
  1958. 'MHD_quiesce_daemon' is not used, we do not want to
  1959. require the use of a pipe; introducing the pipe after
  1960. the threads have been started can also fail, so the
  1961. application needs to tell us early on). -CG
  1962. Sat Jun 22 20:24:17 CEST 2013
  1963. Removed locking calls for thread modes that do not need them.
  1964. Reorganized way to obtain connection's event loop state.
  1965. Added sorted XDLL for connections with default timeout to
  1966. avoid having to loop over all connections to determine current
  1967. timeout (custom per-connection timeouts are in another list
  1968. which is iterated each time). -CG
  1969. Fri Jun 21 20:55:48 CEST 2013
  1970. Preparing build system and tests for epoll support. -CG
  1971. Tue May 21 14:34:36 CEST 2013
  1972. Improving configure tests for OpenSSL and spdylay to
  1973. avoid build errors in libmicrospdy code if those libraries
  1974. are not present. -CG
  1975. Mon May 20 12:29:35 CEST 2013
  1976. Added MHD_CONNECTION_INFO_CONNECTION_FD to allow clients
  1977. direct access to connection socket; useful for COMET
  1978. applications that need to disable NAGLE (#2886). -CG
  1979. Mon May 15 12:49:01 CEST 2013
  1980. Fixing #2859. -CG
  1981. Sun May 5 21:44:08 CEST 2013
  1982. Merged libmicrospdy code with libmicrohttpd build system
  1983. (no major changes to libmicrospdy itself yet). -CG
  1984. Sun May 5 20:13:59 CEST 2013
  1985. Improved documentation and code style a bit.
  1986. Releasing libmicrohttpd 0.9.27. -CG
  1987. Thu Apr 25 13:08:10 CEST 2013
  1988. Added 'MHD_quiesce_daemon' to allow application to stop
  1989. processing new incoming connections while finishing
  1990. ongoing requests. -CG
  1991. Sun Mar 31 23:17:13 CEST 2013
  1992. Added MHD demonstration code 'src/examples/demo.c'. -CG
  1993. Sun Mar 31 20:27:48 CEST 2013
  1994. Adding new API call 'MHD_run_from_select' to allow programs
  1995. running in 'external select mode' to reduce the number of
  1996. 'select' calls by a factor of two. -CG
  1997. Sun Mar 31 20:03:48 CEST 2013
  1998. Performance improvements, updated documentation.
  1999. Make better use of available memory pool memory for
  2000. reading (especially important for large POST uploads);
  2001. improve post processor speed by internally adjusting the
  2002. buffer size by 4 bytes to ensure "round" IO sizes given
  2003. a "round" post processor buffer size argument. Note
  2004. that applications that previously added 4 bytes to the
  2005. post processor buffer size might now perform worse.
  2006. Using the new 'demo' example, POST upload speed
  2007. increased from ~90 MB/s to ~120 MB/s for a large file
  2008. (note that the improvement comes from better aligned
  2009. disk IO; without disk IO, the speed was (and remains)
  2010. at ~1500 MB/s on this system). -CG
  2011. Fri Mar 29 16:44:29 CET 2013
  2012. Renaming testcases to consistently begin with test_;
  2013. Changing build system to build examples in doc/.
  2014. Releasing libmicrohttpd 0.9.26. -CG
  2015. Thu Mar 7 10:13:08 CET 2013
  2016. Fix bug in postprocessor URL parser (#2818). -jgresula
  2017. Mon Mar 4 13:45:35 CET 2013
  2018. Fix dropping of SSL connections if uptime is less than
  2019. MHD_OPTION_CONNECTION_TIMEOUT due to integer underflow (#2802). -greed
  2020. Fri Mar 1 01:11:57 CET 2013
  2021. Fully initialize cleanup mutex struct for each thread (#2803). -Ulion
  2022. Wed Feb 6 01:51:52 CET 2013
  2023. Releasing libmicrohttpd 0.9.25. -CG
  2024. Fri Feb 1 10:19:44 CET 2013
  2025. Handle case where POST data contains "key=" without value
  2026. at the end and is not new-line terminated by invoking the
  2027. callback with the "key" during MHD_destroy_post_processor (#2733). -CG
  2028. Wed Jan 30 13:09:30 CET 2013
  2029. Adding more 'const' to allow keeping of reason phrases in ROM.
  2030. (see mailinglist). -CG/MV
  2031. Tue Jan 29 21:27:56 CET 2013
  2032. Make code work with PlibC 0.1.7 (which removed plibc_init_utf8).
  2033. Only relevant for W32. Fixes #2734. -CG
  2034. Sat Jan 26 21:26:48 CET 2013
  2035. Fixing regression introduced Jan 6 (test on data_size instead
  2036. of total_size. -CG
  2037. Fri Jan 11 23:21:55 CET 2013
  2038. Also return MHD_YES from MHD_destroy_post_processor if
  2039. we did not get '\r\n' in the upload. -CG
  2040. Sun Jan 6 21:10:13 CET 2013
  2041. Enable use of "MHD_create_response_from_callback" with
  2042. body size of zero. -CG
  2043. Tue Dec 25 16:16:30 CET 2012
  2044. Releasing libmicrohttpd 0.9.24. -CG
  2045. Tue Dec 18 21:18:11 CET 2012
  2046. Given both 'chunked' encoding and 'content-length',
  2047. ignore the 'content-length' header as per RFC. -ES
  2048. Thu Dec 6 10:14:44 CET 2012
  2049. Force adding "Connection: close" header to response if
  2050. client asked for connection to be closed (so far, we
  2051. did close the connection, but did not send the
  2052. "Connection: close" header explicitly, which some clients
  2053. seem to dislike. (See discussion on mailinglist).
  2054. Also, if there is already a transfer-encoding other
  2055. than 'chunked' set by the application, we also now close
  2056. the connection if the response is of unknown size. -CG
  2057. Wed Dec 5 19:22:26 CET 2012
  2058. Fixing parameter loss of POST parameters with IE8 and Chrome
  2059. in the PostProcessor as the code failed to properly handle
  2060. partial data. -MM
  2061. Fri Nov 9 21:36:46 CET 2012
  2062. Releasing libmicrohttpd 0.9.23. -CG
  2063. Thu Nov 8 22:32:59 CET 2012
  2064. Ship our own version of tsearch and friends if not provided by platform,
  2065. so that MHD works nicely on Android. -JJ
  2066. Mon Oct 22 13:05:01 CEST 2012
  2067. Immediately do a second read if we get a full buffer from
  2068. TLS as there might be more data in the TLS buffers even if
  2069. there is no activity on the socket. -CG
  2070. Tue Oct 16 01:33:55 CEST 2012
  2071. Consistently use "#ifdef" and "#ifndef" WINDOWS, and not
  2072. sometimes "#if". -CG
  2073. Sat Sep 1 20:51:21 CEST 2012
  2074. Releasing libmicrohttpd 0.9.22. -CG
  2075. Sat Sep 1 20:38:35 CEST 2012
  2076. Adding configure option to allow selecting support for basic
  2077. and digest authentication separately (#2525). -CG
  2078. Thu Aug 30 21:12:56 CEST 2012
  2079. Fixing URI argument parsing when string contained keys without
  2080. equals sign (i.e. '&bar&') in the middle of the argument (#2531).
  2081. Also replacing 'strstr' with more efficient 'strchr' when
  2082. possible. -CG
  2083. Tue Aug 21 14:36:17 CEST 2012
  2084. Use "int" instead of "enum X" in 'va_arg' calls to be nice to
  2085. compilers that use 'short' (i.e. 8 or 16 bit) enums but pass
  2086. enums still as "int" in varargs. (See discussion on mailinglist). -CG/MV
  2087. Tue Aug 21 14:31:54 CEST 2012
  2088. Reduce default size in post processor buffer (for small systems;
  2089. performance impact on large systems should be minimal). -CG/MV
  2090. Thu Jul 19 21:48:42 CEST 2012
  2091. Releasing libmicrohttpd 0.9.21. -CG
  2092. Thu Jul 19 11:34:50 CEST 2012
  2093. Consistently use 'panic' function instead of ever directly
  2094. calling 'abort ()'. Eliminating unused mutex in SSL mode.
  2095. Removing check in testcases that fails depending on which
  2096. version of gnuTLS is involved. -CG
  2097. Tue Jul 17 23:50:43 CEST 2012
  2098. Stylistic code clean up. Allowing lookup up of trailing values
  2099. without keys using "MHD_lookup_connection_value" with a key of NULL
  2100. (thus achieving consistency with the existing iterator API). -CG
  2101. Tue Jul 17 22:37:05 CEST 2012
  2102. Adding experimental (!) code for MHD operation without listen socket. -CG
  2103. Tue Jul 17 22:15:57 CEST 2012
  2104. Making sendfile test pass again on non-W32 systems. -CG
  2105. Mon Jul 9 13:43:35 CEST 2012
  2106. Misc changes to allow testcases to pass on W32. -LRN
  2107. Sun Jul 8 15:05:31 CEST 2012
  2108. Misc changes to fix build on W32. -LRN
  2109. Fri Jun 22 11:31:25 CEST 2012
  2110. Make sure sockets opened by MHD are non-inheritable by default (#2414). -CG
  2111. Tue Jun 19 19:44:53 CEST 2012
  2112. Change various uses of time(NULL) to new MHD_monotonic_time() function to
  2113. make timeouts immune to the system real time clock changing. -MC
  2114. Tue Jun 12 21:35:00 CEST 2012
  2115. Adding 451 status code. -CG
  2116. Thu May 31 13:33:45 CEST 2012
  2117. Releasing 0.9.20. -CG
  2118. Tue May 29 13:55:03 CEST 2012
  2119. Fixed some testcase build issues with disabled post processor. -CG
  2120. Tue May 29 13:45:15 CEST 2012
  2121. Fixing bug where MHD failed to call connection termination callback
  2122. if a connection either was closed due to read errors or if MHD
  2123. was terminated with certain threading modes. Added new
  2124. termination code MHD_REQUEST_TERMINATED_READ_ERROR for the
  2125. read-termination cause. -CG
  2126. Thu Mar 15 23:47:53 CET 2012
  2127. Eliminating code clone in tls connection read/write handlers. -CG
  2128. Fri Mar 2 23:44:56 CET 2012
  2129. Making sure that MHD_get_connection_values iterates over the
  2130. headers in the order in which they were received. -CG
  2131. Wed Feb 1 09:39:12 CET 2012
  2132. Fixed compilation problem on MinGW. -BS
  2133. Tue Jan 31 17:50:24 CET 2012
  2134. Releasing 0.9.19. -CG
  2135. Mon Jan 30 20:02:34 CET 2012
  2136. Fixed handling of garbage prior to first multipart boundary
  2137. (#2126). -woof
  2138. Fri Jan 27 11:00:43 CET 2012
  2139. Fixed postprocessor failure for applications that enclosed boundary
  2140. in quotes (#2120). -woof
  2141. Tue Jan 24 16:07:53 CET 2012
  2142. Added configure check for sin_len in 'struct sockaddr' and adding
  2143. code to initialize this field if it exists now. -CG
  2144. Mon Jan 23 14:02:26 CET 2012
  2145. Fixed double-free if specified cipher was not valid (during
  2146. MHD_daemon_start). Releasing 0.9.18. -CG
  2147. Thu Jan 19 22:11:12 CET 2012
  2148. Switch to non-blocking sockets for all systems but Cygwin
  2149. (we already used non-blocking sockets for GNU/Linux); also
  2150. use non-blocking sockets on Cygwin for HTTPS as this is
  2151. required to avoid DoS-by-partial-record via gnutls. On
  2152. Cygwin, #1824 implies that we need to use blocking sockets
  2153. for HTTP on Cygwin for now. -CG
  2154. Thu Jan 19 17:46:05 CET 2012
  2155. Fixing use of uninitialized 'earliest_deadline' variable in
  2156. MHD_get_timeout which can lead to returning an incorrect
  2157. (too early) timeout (#2085). -tclaveirole
  2158. Thu Jan 19 13:31:27 CET 2012
  2159. Fixing digest authentication for GET requests with URI arguments
  2160. (#2059). -CG
  2161. Sat Jan 7 17:30:48 CET 2012
  2162. Digest authentication expects nonce count in base 16, not base 10
  2163. (#2061). -tclaveirole
  2164. Thu Jan 5 22:01:37 CET 2012
  2165. Partial fix for #2059, digest authentication with GET arguments. -CG
  2166. Thu Dec 1 15:22:57 CET 2011
  2167. Updated authorization_example.c to actually demonstrate the current
  2168. MHD API. -SG
  2169. Mon Nov 21 18:51:30 CET 2011
  2170. Added option to suppress generation of the 'Date:' header to be
  2171. used on embedded systems without RTC. Documented the new option
  2172. and the configure options. -CG
  2173. Sat Nov 19 20:08:40 CET 2011
  2174. Releasing 0.9.17. -CG
  2175. Fri Nov 18 20:17:22 CET 2011
  2176. Fixing return value of MHD_get_timeout if timeouts are not in use.
  2177. (#1914). -rboulton
  2178. Sun Nov 13 13:34:29 CET 2011
  2179. Trying to fix accidental addition of a "Connection: close" footer
  2180. under certain (rare) circumstances. -CG
  2181. Fri Nov 4 10:03:00 CET 2011
  2182. Small updates to the tutorial.
  2183. Releasing 0.9.16. -CG
  2184. Thu Nov 3 10:14:59 CET 2011
  2185. shutdown(RDWR) fails on OS X after shutdown(RD), so only use
  2186. shutdown(WR) if we already closed the socket for reading (otherwise
  2187. OS X might not do shutdown (WR) at all). -CG
  2188. Tue Nov 1 18:51:50 CET 2011
  2189. Force adding of 'Connection: close' to the header if we (for whatever
  2190. reason) are shutting down the socket for reading (see also
  2191. #1760). -CG
  2192. Thu Oct 27 14:16:34 CEST 2011
  2193. Treat EAGAIN the same way as EINTR (helps on W32). -LRN
  2194. Wed Oct 12 10:40:12 CEST 2011
  2195. Made sockets blocking again for non-Linux platforms as non-blocking
  2196. sockets cause problems (#1824) on Cygwin but offer better performance
  2197. on Linux (see change on August 11 2011). -CG/pross
  2198. Fri Oct 7 19:50:07 CEST 2011
  2199. Fixed problems with testcases on W32. -LRN
  2200. Fri Sep 30 17:56:36 CEST 2011
  2201. Fixed MHD_CONNECTION_OPTION_TIMEOUT for HTTPS (#1811). -CG
  2202. Wed Sep 28 08:37:55 CEST 2011
  2203. Releasing libmicrohttpd 0.9.15. -CG
  2204. Tue Sep 27 13:07:36 CEST 2011
  2205. Added ability to access URL arguments of the form 'url?foo' (without
  2206. '='). Added testcase and updated documentation accordingly. -CG
  2207. Mon Sep 26 21:24:00 CEST 2011
  2208. Only run response cleanup testcase if curl binary was found by
  2209. configure. -CG
  2210. Wed Sep 21 09:53:18 CEST 2011
  2211. Reverting to using pipes for signalling select on non-Linux
  2212. platforms where shutdown-on-listen-sockets does not work. -WB/CG
  2213. Mon Sep 19 14:06:30 CEST 2011
  2214. Fixing problem introduced with prompt response cleanup code. -CG
  2215. Wed Sep 14 13:43:26 CEST 2011
  2216. Fixing minor memory leak if daemon with HTTPS support failed to
  2217. initialize (#1766). -CG
  2218. Tue Sep 13 09:47:58 CEST 2011
  2219. Try to release responses more promptly upon connection termination. -CG
  2220. Mon Sep 12 10:20:28 CEST 2011
  2221. Releasing libmicrohttpd 0.9.14. -CG
  2222. Mon Sep 12 10:05:36 CEST 2011
  2223. Added new function to allow setting of a custom timeout value
  2224. for an individual connection (the MHD_set_connection_option is
  2225. more generic, but this is currently the only use). -CG
  2226. Sat Sep 10 07:30:12 CEST 2011
  2227. Documenting that MHD_CONNECTION_INFO_GNUTLS_CLIENT_CERT is not
  2228. implemented and will not be implemented, and what to use instead. -CG
  2229. Fri Sep 9 13:42:20 CEST 2011
  2230. Added testcase to demonstrate that response cleanup calling is
  2231. working. No bug was found. -CG
  2232. Thu Aug 18 11:05:16 CEST 2011
  2233. Fixed bug with wrong state transition if callback returned
  2234. MHD_CONTENT_READER_END_OF_STREAM causing spurious extra callbacks
  2235. to the handler (thanks to Jan Seeger for pointing it out). -CG/JS
  2236. Thu Aug 11 11:40:03 CEST 2011
  2237. Changing sockets to be non-blocking as suggested by Eivind Sarto
  2238. on the mailinglist. -CG
  2239. Mon Jul 25 16:13:15 CEST 2011
  2240. Added a logo. -CG
  2241. Sat Jul 16 22:42:10 CEST 2011
  2242. Change type of nonce to 'unsigned long int' to match return type
  2243. from 'strtoul'. Fixes ERANGE check which would have previously
  2244. failed. -CG
  2245. Wed Jul 13 09:26:17 CEST 2011
  2246. Fixing HTTP error status strings for certain high-numbered status codes.
  2247. Added support for some more (non-standard) status codes.
  2248. Releasing libmicrohttpd 0.9.13. -CG
  2249. Thu Jul 7 10:24:20 CEST 2011
  2250. Adding performance measurements. -CG
  2251. Thu Jun 23 14:21:13 CEST 2011
  2252. Releasing libmicrohttpd 0.9.12. -CG
  2253. Wed Jun 22 14:32:23 CEST 2011
  2254. Force closing connection if either the client asked it or
  2255. if the response contains 'Connection: close' (so far,
  2256. only the client's request was considered). -CG/RV
  2257. Wed Jun 22 10:37:35 CEST 2011
  2258. Removing listen socket from poll/select sets in
  2259. MHD_USE_THREAD_PER_CONNECTION mode; using 'shutdown'
  2260. on connection sockets to signal termination instead. -CG
  2261. Wed Jun 22 10:25:13 CEST 2011
  2262. Eliminate unnecessary (and badly synchronized) calls to
  2263. MHD_get_timeout in MHD_USE_THREAD_PER_CONNECTION mode.
  2264. Document that this is not acceptable. -CG
  2265. Tue Jun 21 13:54:59 CEST 2011
  2266. Fixing tiny memory leak in SSL code from 'gnutls_priority_init'.
  2267. Fixing data race between code doing connection shutdown and
  2268. connection cleanup.
  2269. Changing code to reduce connection cleanup cost from O(n) to O(1).
  2270. Cleaning up logging code around 'connection_close_error'. -CG
  2271. Sat Jun 11 13:05:12 CEST 2011
  2272. Replacing use of sscanf by strtoul (#1688). -CG/bplant
  2273. Fri Jun 3 15:26:42 CEST 2011
  2274. Adding MHD_CONNECTION_INFO_DAEMON to obtain MHD_Daemon
  2275. responsible for a given connection. -CG
  2276. Wed May 25 14:23:20 CEST 2011
  2277. Trying to fix stutter problem on timeout described by
  2278. David Myers on the mailinglist (5/10/2011). -CG
  2279. Fri May 20 22:11:55 CEST 2011
  2280. Fixed bug in testcase setup code causing crashes in
  2281. tls_session_timeout_test on some systems.
  2282. Releasing libmicrohttpd 0.9.11. -CG
  2283. Fri May 20 19:34:59 CEST 2011
  2284. Fixed bug in parsing multipart/form-data with post processor where
  2285. the code failed to add a 0-terminator in the correct position. -PP
  2286. Thu May 12 14:40:46 CEST 2011
  2287. Fixed bug where if multiple HTTP request messages are piped in at once,
  2288. microhttpd would call the handler with the wrong upload_data_size. -HZM
  2289. Thu May 12 14:40:08 CEST 2011
  2290. Documented possible issue with off_t being sometimes
  2291. 32-bit and sometimes 64-bit depending on #includes. -CG
  2292. Sun May 8 21:52:47 CEST 2011
  2293. Allow MHD_SIZE_UNKNOWN to be used in conjunction with
  2294. MHD_create_response_from_fd (fixing #1679). -TG
  2295. Wed Apr 27 16:11:18 CEST 2011
  2296. Releasing libmicrohttpd 0.9.10. -CG
  2297. Fri Apr 8 11:40:35 CEST 2011
  2298. Workaround for cygwin poll brokenness. -TS
  2299. Sun Apr 3 13:56:52 CEST 2011
  2300. Fixing compile error on OS X. -CG
  2301. Wed Mar 30 12:56:09 CEST 2011
  2302. Initialize tv_usec in MHD_USE_THREAD_PER_CONNECTION with select
  2303. and per-connection timeout. -CG
  2304. Tue Mar 29 14:15:13 CEST 2011
  2305. Releasing libmicrohttpd 0.9.9. -CG
  2306. Tue Mar 29 14:11:19 CEST 2011
  2307. Fixed call to mmap for memory pool, extended testcase to cover
  2308. POLL. -CG
  2309. Wed Mar 23 23:24:25 CET 2011
  2310. Do not use POLLIN when we only care about POLLHUP (significantly
  2311. improves performance when using MHD_USE_THREAD_PER_CONNECTION
  2312. in combination with MHD_USE_POLL). -ES
  2313. Sun Mar 20 09:16:53 CET 2011
  2314. Fixing race when using MHD_USE_THREAD_PER_CONNECTION in combination
  2315. with MHD_USE_POLL. -CG
  2316. Fri Mar 18 13:23:47 CET 2011
  2317. Removing MSG_DONTWAIT which should not be needed and was presumably
  2318. causing problems with EAGAIN under certain circumstances. -ES
  2319. Fri Mar 11 22:25:29 CET 2011
  2320. Fixing bug in MHD_create_response_from_fd_at_offset with non-zero offsets. -ES
  2321. Sat Mar 5 22:00:36 CET 2011
  2322. Do not use POLLRDHUP, which causes build errors on OS X / OpenSolaris
  2323. (#1667). -CG
  2324. Fri Mar 4 10:24:04 CET 2011
  2325. Added new API to allow MHD server to initiate connection to
  2326. client (special use-case for servers behind NAT), thereby
  2327. addressing #1661 (externally created connections).
  2328. Releasing libmicrohttpd 0.9.8. -CG
  2329. Fri Mar 4 10:07:18 CET 2011
  2330. Avoid using a pipe for signalling as well, just use server
  2331. socket shutdown (also for thread-per-connection). -CG
  2332. Thu Mar 3 21:42:47 CET 2011
  2333. Fixing issue where Base64 decode fails when char is defined
  2334. as unsigned char (Mantis 1666). -CG/tmayer
  2335. Tue Mar 1 13:58:04 CET 2011
  2336. Allow use of 'poll' in combination with the external select mode.
  2337. Avoid using pthread signals (SIGALRM), use pipe instead.
  2338. Corrected timeout calculation (s vs. ms). -CG
  2339. Wed Feb 23 14:21:44 CET 2011
  2340. Removing useless code pointed out by Eivind Sarto. -CG
  2341. Fri Feb 18 11:03:59 CET 2011
  2342. Handle large (>2 GB) file transfers with sendfile on 32-bit
  2343. systems better; handle odd sendfile failures by libc/kernel
  2344. by falling back to standard 'SEND'. -CG
  2345. Sun Feb 13 10:52:29 CET 2011
  2346. Handle gnutls receive error(s) for interrupted SSL
  2347. connections better. -MS
  2348. Releasing libmicrohttpd 0.9.7. -CG
  2349. Fri Feb 11 10:15:38 CET 2011
  2350. Fixing parameter ordering in documentation (#1659). -wellska
  2351. Thu Jan 27 10:51:39 CET 2011
  2352. Disable 'EXTRA_CHECKS's by default as suggested in #1652
  2353. (I guess it is time). -CG/timn
  2354. Thu Jan 27 10:48:55 CET 2011
  2355. Removing bogus assertion in basic authentication code (#1651). -CG/timn
  2356. Tue Jan 25 14:10:45 CET 2011
  2357. Releasing libmicrohttpd 0.9.6. -CG
  2358. Mon Jan 24 16:36:35 CET 2011
  2359. Fixing compilation error if DAUTH_SUPPORT was 0 (#1646). -CG/bplant
  2360. Tue Jan 18 23:58:09 CET 2011
  2361. Fixing hash calculation in digest auth; old function had
  2362. collisions causing the browser to challenge users for
  2363. authentication too often. -CG/AW
  2364. Fri Jan 14 19:19:45 CET 2011
  2365. Removing dead code, adding missing new symbols to export list.
  2366. Fixed two missing NULL checks after malloc operations. -CG
  2367. Mon Jan 10 14:07:33 CET 2011
  2368. Releasing libmicrohttpd 0.9.5. -CG
  2369. Wed Jan 5 15:20:11 CET 2011
  2370. Fixing double-locking on non-Linux platforms when using
  2371. MHD_create_response_from_fd (#1639). -CG
  2372. Avoid use of strndup for better portability (#1636). -CG
  2373. Tue Jan 4 13:07:21 CET 2011
  2374. Added MHD_create_response_from_buffer, deprecating
  2375. MHD_create_response_from_data. Deprecating
  2376. MHD_create_response_from_fd as well. -CG
  2377. Sun Dec 26 00:02:15 CET 2010
  2378. Releasing libmicrohttpd 0.9.4. -CG
  2379. Sat Dec 25 21:57:14 CET 2010
  2380. Adding support for basic authentication.
  2381. Documented how to obtain client SSL certificates in tutorial. -MS
  2382. Thu Dec 23 15:40:36 CET 2010
  2383. Increasing nonce length to 128 to support digest authentication
  2384. with Opera (see #1633).
  2385. Mon Dec 20 21:22:57 CET 2010
  2386. Added macro MHD_LONG_LONG to allow change of MHD's "long long" use
  2387. to some other type on platforms that do not support "long long"
  2388. (Mantis #1631). -CG/bplant
  2389. Sun Dec 19 19:54:15 CET 2010
  2390. Added 'MHD_create_response_from_fd_at_offset'. -CG
  2391. Sun Dec 19 15:16:16 CET 2010
  2392. Fixing --enable and --disable configure options to behave properly. -CG
  2393. Sun Dec 19 13:46:52 CET 2010
  2394. Added option to specify size of stacks for threads created by MHD. -CG
  2395. Tue Nov 23 09:41:00 CET 2010
  2396. Releasing libmicrohttpd 0.9.3. -CG
  2397. Thu Nov 18 23:10:36 CET 2010
  2398. Fixing #1619 (testcases not working with NSS on Fedora). -CG/timn
  2399. Thu Nov 18 22:55:58 CET 2010
  2400. Fixing #1621 (socket not closed under certain circumstances). -CG/jaredc
  2401. Wed Nov 17 12:16:53 CET 2010
  2402. Allowing signalling of errors in generating chunked responses to
  2403. clients (by closing connectins) using the new
  2404. MHD_CONTENT_READER_END_WITH_ERROR ((size_t)-2) return value. Also
  2405. introducing MHD_CONTENT_READER_END_OF_STREAM constant instead
  2406. of (size_t) -1 / SIZE_MAX.
  2407. Sun Nov 14 20:45:45 CET 2010
  2408. Adding API call to generate HTTP footers in response. -CG
  2409. Sat Oct 16 12:38:43 CEST 2010
  2410. Releasing libmicrohttpd 0.9.2. -CG
  2411. Tue Oct 12 15:41:51 CEST 2010
  2412. Fixed issue with data received via SSL being delayed in the
  2413. GNUtls buffer if sender stopped transmitting (but did not close
  2414. the connection) and MHD buffer size was smaller than last fragment,
  2415. resulting in possibly significantly delayed processing of
  2416. incoming data. -CG
  2417. Wed Sep 22 09:48:59 CEST 2010
  2418. Changed port argument from 'unsigned short' to 'uint16_t'.
  2419. Removed dead code when compiling with messages enabled.
  2420. Minimal unrelated code cleanup. -CG
  2421. Tue Sep 21 15:12:41 CEST 2010
  2422. Use "size_t" for buffer size instead of "int". -CG
  2423. Sat Sep 18 07:16:30 CEST 2010
  2424. Adding support for SHOUTcast. -CG
  2425. Wed Sep 15 09:33:46 CEST 2010
  2426. Fixed double-free. -CG/ES
  2427. Fri Sep 10 14:47:11 CEST 2010
  2428. Releasing libmicrohttpd 0.9.1. -CG
  2429. Fri Sep 10 14:29:37 CEST 2010
  2430. Adding proper nonce counter checking for digest authentication. -CG/AA
  2431. Sat Sep 4 21:55:52 CEST 2010
  2432. Digest authentication now seems to be working. -CG/AA
  2433. Wed Sep 1 13:59:16 CEST 2010
  2434. Added ability to specify external unescape function.
  2435. "microhttpd.h" now includes the right headers for GNU/Linux
  2436. systems unless MHD_PLATFORM_H is defined (in which case it
  2437. is assumed that the right headers were already determined by
  2438. some configure-like process). -CG
  2439. Tue Aug 31 15:39:25 CEST 2010
  2440. Fixed bug with missing call to response cleanup in case of
  2441. connection handling error (for example, after getting a SIGPIPE). -CG
  2442. Tue Aug 24 11:39:25 CEST 2010
  2443. Fixed bug in handling EAGAIN from GnuTLS (caused
  2444. needlessly dropped SSL connections). -CG
  2445. Sun Aug 22 16:49:13 CEST 2010
  2446. Initial draft for digest authentication. -AA
  2447. Thu Aug 19 14:15:01 CEST 2010
  2448. Changed code to enable error messages and HTTPS by default;
  2449. added option to disable post processor API (use
  2450. breaks binary compatibility, should only be done
  2451. for embedded systems that require minimal footprint). -CG
  2452. Thu Aug 19 13:26:00 CEST 2010
  2453. Patches for Windows to ease compilation trouble. -GT/CG
  2454. Sat Aug 14 15:43:30 CEST 2010
  2455. Fixed small, largely hypothetical leaks.
  2456. Reduced calls to strlen for header processing. -CG
  2457. Fri Aug 6 12:51:59 CEST 2010
  2458. Fixing (small) memory leak on daemon-shutdown with
  2459. SSL enabled. -CG/PG
  2460. Thu Aug 5 22:24:37 CEST 2010
  2461. Fixing timeout bug on systems that think it's still
  2462. 1970 (can happen if system time not initialized). -CG
  2463. Mon Jul 26 10:46:57 CEST 2010
  2464. Releasing libmicrohttpd 0.9.0. -CG
  2465. Sun Jul 25 14:57:47 CEST 2010
  2466. Adding support for sendfile on Linux. Adding support
  2467. for systemd-style passing of an existing listen socket
  2468. as an option. IPv6 sockets now only bind to IPv6
  2469. (if platform supports this). -CG
  2470. Sun Jul 25 11:10:45 CEST 2010
  2471. Changed code to use external libgnutls code instead of
  2472. the "fork". Minor API changes for setting TLS options. -CG
  2473. Sun Jun 13 10:52:34 CEST 2010
  2474. Cleaned up example code. -CG
  2475. Fri Apr 23 09:56:37 CEST 2010
  2476. Do not return HTTP headers for requests without version
  2477. numbers. Do return HTTP version 1.0 if client requested
  2478. HTTP version 1.1 (previously, we returned HTTP/1.1 even
  2479. if the client specified HTTP/1.0). -GM/CG
  2480. Sat Mar 13 09:41:01 CET 2010
  2481. Releasing libmicrohttpd 0.4.6. -CG
  2482. Wed Mar 10 13:18:26 CET 2010
  2483. Fixing bug in 100 CONTINUE replacement when handling POSTs
  2484. (see report on mailinglist), with testcase. -CG/MC
  2485. Tue Feb 23 09:16:15 CET 2010
  2486. Added configure check for endianness to define WORDS_BIGENDIAN
  2487. which fixes SSL support on big endian architectures. -JA/CG
  2488. Sat Feb 20 10:01:09 CET 2010
  2489. Added check for inconsistent options (MHD_OPTION_PROTOCOL_VERSION
  2490. without MHD_USE_SSL) causing instant segfault. -JA/CG
  2491. Tue Feb 9 20:31:51 CET 2010
  2492. Fixed issue with poll doing busy waiting. -BK/CG
  2493. Thu Jan 28 21:28:56 CET 2010
  2494. Releasing libmicrohttpd 0.4.5. -CG
  2495. Thu Jan 28 20:35:48 CET 2010
  2496. Make sure addresses returned by memory pool are
  2497. aligned (fixes bus errors on Sparc). -CG
  2498. Thu Dec 17 20:26:52 CET 2009
  2499. poll.h is not strictly required anymore. -ND
  2500. Fri Dec 4 13:17:50 CET 2009
  2501. Adding MHD_OPTION_ARRAY. -CG
  2502. Mon Nov 16 14:41:26 CET 2009
  2503. Fixed busy-loop in internal select mode for inactive
  2504. clients with infinite connection timeout. -CG
  2505. Thu Nov 12 16:19:14 CET 2009
  2506. Adding support for setting a custom error handler for
  2507. fatal errors (previously, the implementation always
  2508. called 'abort' in these cases). -CG/ND
  2509. Wed Nov 11 12:54:16 CET 2009
  2510. Adding support for poll (alternative to select allowing
  2511. for more than FD_SETSIZE parallel connections). -JM
  2512. Wed Oct 28 20:26:00 CET 2009
  2513. Releasing libmicrohttpd 0.4.4. -CG
  2514. Wed Oct 14 14:37:37 CEST 2009
  2515. Fixing (rare) deadlock due to SELECT missing SIGALRM by
  2516. making all SELECT calls block for at most 1s. While this
  2517. can in (rare) situations delay the shutdown by 1s, I think
  2518. this is preferable (both performance and possibly portability-wise)
  2519. over using a pipe for the signal. -CG
  2520. Sun Oct 11 14:57:29 CEST 2009
  2521. Adding eCos license as an additional license for the
  2522. non-HTTPS code of MHD. -CG
  2523. Sun Oct 11 11:24:27 CEST 2009
  2524. Adding support for Symbian. -MR
  2525. Fri Oct 9 15:21:29 CEST 2009
  2526. Check for error codes from pthread operations (to help with
  2527. error diagnostics) and abort if something went wrong. -CG
  2528. Thu Oct 8 10:43:02 CEST 2009
  2529. Added check for sockets being '< FD_SETSIZE' (just to be safe). -CG
  2530. Mon Oct 5 21:17:26 CEST 2009
  2531. Adding "COOKIE" header string #defines. -CG
  2532. Mon Oct 5 08:29:06 CEST 2009
  2533. Documenting default values. -CG
  2534. Fri Aug 28 22:56:47 CEST 2009
  2535. Releasing libmicrohttpd 0.4.3. -CG
  2536. Sun Aug 23 16:21:35 UTC 2009
  2537. Allow MHD_get_daemon_info to return the daemon's listen socket.
  2538. Includes a test case that uses this functionality to bind a server to
  2539. an OS-assigned port, look the port up with getsockname, and curl it. -DR
  2540. Tue Aug 4 00:14:04 CEST 2009
  2541. Fixing double-call to read from content-reader callback for first
  2542. data segment (as reported by Alex on the mailinglist). -CG
  2543. Thu Jul 29 21:41:52 CEST 2009
  2544. Fixed issue with the code not using the "block_size" argument
  2545. given to MHD_create_response_from_callback causing inefficiencies
  2546. for values < 2048 and segmentation faults for values > 2048
  2547. (as reported by Andre Colomb on the mailinglist). -CG
  2548. Sun May 17 03:29:46 MDT 2009
  2549. Releasing libmicrohttpd 0.4.2. -CG
  2550. Fri May 15 11:00:20 MDT 2009
  2551. Grow reserved read buffer more aggressively so that we are not
  2552. needlessly stuck reading only a handful of bytes in each iteration. -CG
  2553. Thu May 14 21:20:30 MDT 2009
  2554. Fixed issue where the "NOTIFY_COMPLETED" handler could be called
  2555. twice (if a socket error or timeout occurred for a pipelined
  2556. connection after successfully completing a request and before
  2557. the next request was successfully transmitted). This could
  2558. confuse applications not expecting to see a connection "complete"
  2559. that they were never aware of in the first place. -CG
  2560. Mon May 11 13:01:16 MDT 2009
  2561. Fixed issue where error code on timeout was "TERMINATED_WITH_ERROR"
  2562. instead of "TERMINATED_TIMEOUT_REACHED". -CG
  2563. Wed Apr 1 21:33:05 CEST 2009
  2564. Added MHD_get_version(). -ND
  2565. Wed Mar 18 22:59:07 MDT 2009
  2566. Releasing libmicrohttpd 0.4.1. -CG
  2567. Wed Mar 18 17:46:58 MDT 2009
  2568. Always RECV/SEND with MSG_DONTWAIT to (possibly) address
  2569. strange deadlock reported by Erik on the mailinglist ---
  2570. and/or issues with blocking read after select on GNU/Linux
  2571. (see select man page under bugs). -CG
  2572. Tue Mar 17 01:19:50 MDT 2009
  2573. Added support for thread-pools. -CG/RA
  2574. Mon Mar 2 23:44:08 MST 2009
  2575. Fixed problem with 64-bit upload and download sizes and
  2576. "-1" being used to indicate "unknown" by introducing
  2577. new 64-bit constant "MHD_SIZE_UNKNOWN". -CG/DC
  2578. Wed Feb 18 08:13:56 MST 2009
  2579. Added missing #include for build on arm-linux-uclibc. -CG/CC
  2580. Mon Feb 16 21:12:21 MST 2009
  2581. Moved MHD_get_connection_info so that it is always defined,
  2582. even if HTTPS support is not enabled. -CG
  2583. Sun Feb 8 21:15:30 MST 2009
  2584. Releasing libmicrohttpd 0.4.0. -CG
  2585. Thu Feb 5 22:43:45 MST 2009
  2586. Incompatible API change to allow 64-bit uploads and downloads.
  2587. Clients must use "uint64_t" for the "pos"
  2588. argument (MHD_ContentReaderCallback) and the "off"
  2589. argument (MHD_PostDataIterator) and the "size"
  2590. argument (MHD_create_response_from_callback) now.
  2591. Also, "unsigned int" was changed to "size_t" for
  2592. the "upload_data_size" argument (MHD_AccessHandlerCallback),
  2593. the argument to MHD_OPTION_CONNECTION_MEMORY_LIMIT,
  2594. the "block_size" argument (MHD_create_response_from_callback),
  2595. the "buffer_size" argument (MHD_create_post_processor) and
  2596. the "post_data_len" argument (MHD_post_process). You may
  2597. need to #include <stdint.h> before <microhttpd.h> from now on. -CG
  2598. Thu Feb 5 20:21:08 MST 2009
  2599. Allow getting address information about the connecting
  2600. client after the accept call. -CG
  2601. Mon Feb 2 22:21:48 MST 2009
  2602. Fixed missing size adjustment for offsets for %-encoded
  2603. arguments processed by the post processor (Mantis #1447). -CG/SN
  2604. Fri Jan 23 16:57:21 MST 2009
  2605. Support charset specification (ignore) after content-type
  2606. when post-processing HTTP POST requests (Mantis #1443). -CG/SN
  2607. Fri Dec 26 23:08:04 MST 2008
  2608. Fixed broken check for identical connection address. -CG
  2609. Making cookie parser more RFC2109 compliant (handle
  2610. spaces around key, allow value to be optional). -CG
  2611. Sat Dec 6 18:36:17 MST 2008
  2612. Added configure option to disable checking for CURL support.
  2613. Added MHD_OPTION to allow specification of custom logger. -CG
  2614. Tue Nov 18 01:19:53 MST 2008
  2615. Removed support for untested and/or broken SSL features
  2616. and (largely useless) options. -CG
  2617. Sun Nov 16 16:54:54 MST 2008
  2618. Added option to get unparsed URI via callback.
  2619. Releasing GNU libmicrohttpd 0.4.0pre1. -CG
  2620. Sun Nov 16 02:48:14 MST 2008
  2621. Removed tons of dead code. -CG
  2622. Sat Nov 15 17:34:24 MST 2008
  2623. Added build support for code coverage analysis. -CG
  2624. Sat Nov 15 00:31:33 MST 2008
  2625. Removing (broken) support for HTTPS servers with
  2626. anonymous (aka "no") certificates as well as
  2627. various useless dead code. -CG
  2628. Sat Nov 8 02:18:42 MST 2008
  2629. Unset TCP_CORK at the end of transmitting a response
  2630. to improve performance (on systems where this is
  2631. supported). -MM
  2632. Tue Sep 30 16:48:08 MDT 2008
  2633. Make MHD useful to Cygwin users; detect IPv6 headers
  2634. in configure.
  2635. Sun Sep 28 14:57:46 MDT 2008
  2636. Unescape URIs (convert "%ef%e4%45" to "$BCf9q(B"). -CG
  2637. Wed Sep 10 22:43:59 MDT 2008
  2638. Releasing GNU libmicrohttpd 0.4.0pre0. -CG
  2639. Wed Sep 10 21:36:06 MDT 2008
  2640. Fixed data race on closing sockets during
  2641. shutdown (in one-thread-per-connection mode). -CG
  2642. Thu Sep 4 23:37:18 MDT 2008
  2643. Fixed some boundary issues with processing
  2644. chunked requests; removed memmove from a
  2645. number of spots, in favor of using an index into
  2646. the current buffer instead. -GS
  2647. Sun Aug 24 13:05:41 MDT 2008
  2648. Now handling clients returning 0 from response callback
  2649. as specified in the documentation (abort if internal
  2650. select is used, retry immediately if a thread per
  2651. connection is used). -CG
  2652. Sun Aug 24 12:44:43 MDT 2008
  2653. Added missing reason phrase. -SG
  2654. Sun Aug 24 10:33:22 MDT 2008
  2655. Fixed bug where MHD failed to transmit the response when
  2656. the client decided not to send "100 CONTINUE" during
  2657. a PUT/POST request. -CG
  2658. Wed Jul 16 18:54:03 MDT 2008
  2659. Fixed bug generating chunked responses with chunk sizes
  2660. greater than 0xFFFFFF (would cause protocol violations). -CG
  2661. Mon May 26 13:28:57 MDT 2008
  2662. Updated and improved documentation.
  2663. Releasing GNU libmicrohttpd 0.3.1. -CG
  2664. Fri May 23 16:54:41 MDT 2008
  2665. Fixed issue with postprocessor not handling URI-encoded
  2666. values of more than 1024 bytes correctly. -CG
  2667. Mon May 5 09:18:29 MDT 2008
  2668. Fixed date header (was off by 1900 years). -JP
  2669. Sun Apr 13 01:06:20 MDT 2008
  2670. Releasing GNU libmicrohttpd 0.3.0. -CG
  2671. Sat Apr 12 21:34:26 MDT 2008
  2672. Generate an internal server error if the programmer fails
  2673. to handle upload data correctly. Tweaked testcases to
  2674. avoid running into the problem in the testcases.
  2675. Completed zzuf-based fuzzing testcases. -CG
  2676. Sat Apr 12 15:14:05 MDT 2008
  2677. Restructured the code (curl-testcases and zzuf testcases
  2678. are now in different directories; code examples are in
  2679. src/examples/).
  2680. Fixed a problem (introduced in 0.2.3) with handling very
  2681. large requests (the code did not return proper error code).
  2682. If "--enable-messages" is specified, the code now includes
  2683. reasonable default HTML webpages for various built-in
  2684. errors (such as request too large and malformed requests).
  2685. Without that flag, the webpages returned will still be
  2686. empty.
  2687. Started to add zzuf-based fuzzing-testcases (these require
  2688. the zzuf and socat binaries to be installed). -CG
  2689. Fri Apr 11 20:20:34 MDT 2008
  2690. I hereby dub libmicrohttpd a GNU package. -Richard Stallman
  2691. Sat Mar 29 22:36:09 MDT 2008
  2692. Fixed bugs in handling of malformed HTTP requests
  2693. (causing either NULL dereferences or connections to
  2694. persist until time-out, if any). -CG
  2695. Updated and integrated TexInfo documentation. -CG
  2696. Tue Mar 25 13:40:53 MDT 2008
  2697. Prevent multi-part post-processor from going to error
  2698. state when the input buffer is full and current token
  2699. just changes processor state without consuming any data.
  2700. Also, the original implementation would not consume any
  2701. input in process_value_to_boundary if there is no new
  2702. line character in sight. -AS
  2703. Remove checks for request method after it finished writing
  2704. response footers as it's only _pipelined_ requests that
  2705. should not be allowed after POST or PUT requests. Reusing
  2706. the existing connection is perfectly ok though. And there
  2707. is no reliable way to detect pipelining on server side
  2708. anyway so it is the client's responsibility to not send new
  2709. data before it gets a response after a POST operation. -AS
  2710. Clarified license in man page. Releasing
  2711. libmicrohttpd 0.2.3 -CG
  2712. Sat Mar 22 01:12:38 MDT 2008
  2713. Releasing libmicrohttpd 0.2.2. -CG
  2714. Mon Feb 25 19:13:53 MST 2008
  2715. Fixed a problem with sockets closed for reading ending up
  2716. in the read set under certain circumstances. -CG
  2717. Wed Jan 30 23:15:44 MST 2008
  2718. Added support for nested multiparts to post processor.
  2719. Made sure that MHD does not allow pipelining for methods
  2720. other than HEAD and GET (and of course still also only
  2721. allows it for http 1.1). Releasing libmicrohttpd 0.2.1. -CG
  2722. Mon Jan 21 11:59:46 MST 2008
  2723. Added option to limit number of concurrent connections
  2724. accepted from the same IP address. -CG
  2725. Fri Jan 4 16:02:08 MST 2008
  2726. Fix to properly close connection if application signals
  2727. problem handling the request. - AS
  2728. Wed Jan 2 16:41:05 MST 2008
  2729. Improvements and bugfixes to post processor implementation. - AS
  2730. Wed Dec 19 21:12:04 MST 2007
  2731. Implemented chunked (HTTP 1.1) downloads (including
  2732. sending of HTTP footers). Also allowed queuing of
  2733. a response early to suppress the otherwise automatic
  2734. "100 CONTINUE" response. Removed the mostly useless
  2735. "(un)register handler" methods from the API. Changed
  2736. the internal implementation to use a finite state
  2737. machine (cleaner code, slightly less memory consumption).
  2738. Releasing libmicrohttpd 0.2.0. - CG
  2739. Sun Dec 16 03:24:13 MST 2007
  2740. Implemented handling of chunked (HTTP 1.1) uploads.
  2741. Note that the upload callback must be able to
  2742. process chunks in the size uploaded by the client,
  2743. MHD will not "join" small chunks into a big
  2744. contiguous block of memory (even if buffer space
  2745. would be available). - CG
  2746. Wed Dec 5 21:39:35 MST 2007
  2747. Fixed race in multi-threaded server mode.
  2748. Fixed handling of POST data when receiving a
  2749. "Connection: close" header (#1296).
  2750. Releasing libmicrohttpd 0.1.2. - CG
  2751. Sat Nov 17 00:55:24 MST 2007
  2752. Fixed off-by-one in error message string matching.
  2753. Added code to avoid generating SIGPIPE on platforms
  2754. where this is possible (everywhere else, the main
  2755. application should install a handler for SIGPIPE).
  2756. Thu Oct 11 11:02:06 MDT 2007
  2757. Releasing libmicrohttpd 0.1.1. - CG
  2758. Thu Oct 11 10:09:12 MDT 2007
  2759. Fixing response to include HTTP status message. - EG
  2760. Thu Sep 27 10:19:46 MDT 2007
  2761. Fixing parsing of "%xx" in URLs with GET arguments. - eglaysher
  2762. Sun Sep 9 14:32:23 MDT 2007
  2763. Added option to compile debug/warning messages;
  2764. error messages are now disabled by default.
  2765. Modified linker option for GNU LD to not export
  2766. non-public symbols (further reduces binary size).
  2767. Releasing libmicrohttpd 0.1.0. - CG
  2768. Sat Sep 8 21:54:04 MDT 2007
  2769. Extended API to allow for incremental POST
  2770. processing. The new API is binary-compatible
  2771. as long as the app does not handle POSTs, but
  2772. since that maybe the case, we're strictly speaking
  2773. breaking backwards compatibility (since url-encoded
  2774. POST data is no longer obtained the same way). - CG
  2775. Thu Aug 30 00:59:24 MDT 2007
  2776. Improving API to allow clients to associate state
  2777. with a connection and to be notified about request
  2778. termination (this is a binary-compatible change). - CG
  2779. Fixed compile errors under OS X. - HL
  2780. Sun Aug 26 03:11:46 MDT 2007
  2781. Added MHD_USE_PEDANTIC_CHECKS option which enforces
  2782. receiving a "Host:" header in HTTP 1.1 (and sends a
  2783. HTTP 400 status back if this is violated). - CG
  2784. Tue Aug 21 01:01:46 MDT 2007
  2785. Fixing assertion failure that occurred when a client
  2786. closed the connection after sending some data but
  2787. not the full headers. - CG
  2788. Sat Aug 18 03:06:09 MDT 2007
  2789. Check for out of memory when adding headers to
  2790. responses. Check for NULL key when looking
  2791. for headers. If a content reader callback
  2792. for a response returns zero (has no data yet),
  2793. do not possibly fall into busy waiting when
  2794. using external select (with internal selects
  2795. we have no choice). - CG
  2796. Wed Aug 15 01:46:44 MDT 2007
  2797. Extending API to allow timeout of connections.
  2798. Changed API (MHD_create_response_from_callback) to
  2799. allow user to specify IO buffer size.
  2800. Improved error handling.
  2801. Released libmicrohttpd 0.0.3. - CG
  2802. Tue Aug 14 19:45:49 MDT 2007
  2803. Changed license to LGPL (with consent from all contributors).
  2804. Released libmicrohttpd 0.0.2. - CG
  2805. Sun Aug 12 00:09:26 MDT 2007
  2806. Released libmicrohttpd 0.0.1. - CG
  2807. Fri Aug 10 17:31:23 MDT 2007
  2808. Fixed problems with handling of responses created from
  2809. callbacks. Allowing accept policy callback to be NULL
  2810. (to accept from all). Added minimal fileserver example.
  2811. Only send 100 continue header when specifically requested. - CG
  2812. Wed Aug 8 01:46:06 MDT 2007
  2813. Added pool allocation and connection limitations (total
  2814. number and memory size). Released libmicrohttpd 0.0.0. - CG
  2815. Tue Jan 9 20:52:48 MST 2007
  2816. Created project build files and updated API. - CG