summaryrefslogtreecommitdiffstats
path: root/cpukit/mghttpd/mongoose.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* mghttpd/mongoose: Fix string truncation warningFrank Kühndel2020-10-101-2/+2
| | | | | | | | This fixes the compiler warning below. ../../../cpukit/mghttpd/mongoose.c:1919:45: warning: '.gz' directive output may be truncated writing 3 bytes into a region of size between 1 and 255 [-Wformat-truncation=]
* Canonicalize config.h includeSebastian Huber2020-04-161-1/+1
| | | | | | | | Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
* mghttpd: Add configuration to source fileSebastian Huber2018-10-041-0/+4
| | | | Update #3375.
* cpukit/mttpd: Add a callback to generate a per file HTTP etagChris Johns2018-04-111-6/+13
| | | | Close #3323.
* mghttpd: Include <mghttpd/mongoose.h>Sebastian Huber2017-12-131-1/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* Move printer initialization to separate headerSebastian Huber2016-06-221-1/+1
| | | | | | The RTEMS print user need to know nothing about a particular printer implementation. In particular get rid of the <stdio.h> include which would be visible via <rtems.h>.
* mghttpd: Add RTEMS printer supportSebastian Huber2016-06-061-0/+12
|
* Update to Mongoose 3.9 at the last point before the MIT -> GPL license changeNick Withers2013-12-041-1149/+2353
| | | | | | | | | | | | | | | | | | | | [That is, https://github.com/cesanta/mongoose/commit/04fc209644b414d915c446bb1815b55e9fe63acc. See https://groups.google.com/forum/#!topic/mongoose-users/aafbOnHonkI] The RTEMS patches described in the following emails and made to the previous Mongoose base have been applied: - http://www.rtems.org/pipermail/rtems-devel/2012-July/001345.html - http://www.rtems.org/pipermail/rtems-devel/2012-July/001343.html - http://www.rtems.org/pipermail/rtems-devel/2012-July/001346.html (except to mongoose.1, see below) ...as well as a patch very similar to that discussed at http://forums.bannister.org/ubbthreads.php?ubb=showflat&topic=7600&gonew=1 to provide poll() (which might be able to go away soon, with incoming RTEMS poll() support) mg_connect(), mg_url_encode() and mg_vprintf() were additionally marked "static" to silence warnings. mongoose.1 appears to have been removed from the upstream distribution. Note that the API's changed, for example: - A struct mg_callbacks must now be provided to mg_start(). Initialise members to NULL to disable various types of callbacks - Callback interfaces have changed significantly in general - The short form of options (e.g., "u" instead of "run_as_user") are no longer available (upstream) - The "max_request_size" options has been removed
* mghttpd: Add stack size and scheduling optionsChristian Mauderer2012-07-121-0/+54
|
* mghttpd: Use MD5 librarySebastian Huber2012-07-121-0/+5
|
* mghttpd: Use HAVE_CONFIG_HSebastian Huber2012-07-121-0/+4
|
* mghttpd: Update MongooseChristian Mauderer2012-07-121-4446/+3963
| | | | | | Update to Mongoose Mercurial revision 268:38a02c8a6744 available at: https://code.google.com/p/mongoose/
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-2/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* 2009-11-23 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-11-231-0/+6
| | | | | * mghttpd/mongoose.c: crypto_sw table is not used when SSL is disabled. RTEMS does not have flockfile/funlockfile.
* Various 16bit fixes.Ralf Corsepius2009-11-171-7/+7
|
* Add HAVE_CONFIG_H.Ralf Corsepius2009-11-171-0/+4
|
* Add HAVE_SYS_MMAN_H HAVE_DLFCN_H.Ralf Corsepius2009-11-171-0/+4
|
* Convert to unix encoding.Ralf Corsepius2009-11-171-4725/+4725
|
* 2009-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-11-171-0/+4725
* mghttpd/mongoose.c, mghttpd/mongoose.h, mghttpd/mongoose.1: Import from svn http://mongoose.googlecode.com/svn/trunk (r477).