Sergio R. Caprile b6dc830bcb
Merge pull request #2964 from cesanta/http-cookie
Use separate cookies for HTTP and HTTPS connections
2024-11-22 16:39:08 -03:00
..
2024-06-21 17:12:07 -03:00
2024-10-24 19:08:06 -03:00
2024-04-22 11:27:22 -03:00
2024-10-03 16:50:00 -03:00
2024-10-24 19:08:06 -03:00
2024-10-24 19:08:06 -03:00
2024-11-22 14:01:32 -03:00
2024-09-26 17:11:57 -03:00
2024-10-03 11:55:38 -03:00
2024-04-17 16:13:10 -03:00
2024-10-10 15:49:53 -03:00
2023-02-14 15:12:51 +00:00
2024-11-08 14:34:33 -03:00

Mongoose Network Library Examples

In order to build and run any of the existing examples, please follow: https://mongoose.ws/documentation/#how-to-build-and-run-examples

Contributing

Rules for creating a new example:

  • Makefile golden reference for desktop/server example: http-server
  • Makefile golden reference for the embedded example: stm32/nucleo-f746zg-baremetal
  • An example must build on Windows, Mac and Ubuntu Linux systems
  • Assume that user installed tools according to https://mongoose.ws/tutorials/tools/
  • Makefile must not include any other make files
  • Use CFLAGS for system-specific compilation options
  • Use CFLAGS_MONGOOSE for mongoose-specific compilation options
  • Use $(CFLAGS) $(CFLAGS_MONGOOSE) $(CFLAGS_EXTRA) to compile
  • If external repository is required, download it on demand using git shallow clone. See embedded example golden reference
  • Keep Makefile as short as possible, but verbose to understand it easily
  • Symlink files when required, like mongoose.c, ca.pem, etc. Make no copies
  • Example's README.md should contain only the title and the link to mongoose.ws tutorial page