Skip to content
Snippets Groups Projects
  1. Mar 15, 2017
  2. Mar 11, 2017
  3. Mar 01, 2017
  4. Feb 28, 2017
  5. Feb 24, 2017
    • Dmitry Frank's avatar
      Fix subscription to wildcard topics · 39429149
      Dmitry Frank authored
      `mg_mqtt_match_topic_expression()` and friends are public now.
      
      So far, only `#` is supported.
      
      PUBLISHED_FROM=20c031bcf34be84771c4a9c456318634eb9a517c
      39429149
  6. Feb 15, 2017
  7. Feb 09, 2017
  8. Jan 30, 2017
  9. Jan 10, 2017
  10. Nov 25, 2016
  11. Nov 18, 2016
  12. Nov 17, 2016
  13. Nov 14, 2016
  14. Nov 11, 2016
  15. Nov 10, 2016
  16. Nov 09, 2016
  17. Nov 08, 2016
  18. Nov 03, 2016
  19. Nov 02, 2016
  20. Oct 28, 2016
  21. Oct 27, 2016
  22. Oct 26, 2016
  23. Oct 17, 2016
  24. Oct 14, 2016
  25. Oct 13, 2016
    • Deomid Ryabkov's avatar
      Change from using #ifdef to #if for features tests · bafc30be
      Deomid Ryabkov authored
      "#if FOO" still works with simple -DFOO, but gives more flexibility.
      Specifically, if user expressed no preference (FOO is not defined),
      we can apply reasonable defaults (this is the legitimate use of ifdef).
      
      In short, from now on, please use
      
       #if MG_ENABLE_FOO
      
      instead of
      
       #ifdef MG_ENABLE_FOO
      
      Since we are all used to #ifdef, this change also adds a precommit check
      to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
      "ifdef" and "if defined()" are not allowed to be used with macros that contain
      ENABLE or DISABLE, unless the like also contains "ifdef-ok".
      
      Hence, if you are sure you want to use ifdef, use this:
      
       #ifdef MG_ENABLE_FOO /* ifdef-ok */
      
      PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
      bafc30be
  26. Oct 05, 2016
    • Deomid Ryabkov's avatar
      Add MG_EV_SSI_CALL_CTX · f9a6403b
      Deomid Ryabkov authored
      This is the variant of MG_EV_SSI_CALL with context of the SSI call being
      processed in addition to the tag argument. Specifically, call handler
      now gets access to the HTTP request and the name of the file being processed.
      
      MG_EV_SSI_CALL is preserved for backward compatibility.
      
      PUBLISHED_FROM=eeea7487c062505abdb23b6f64994ff7a6b60ff8
      f9a6403b
  27. Sep 30, 2016
  28. Sep 28, 2016
  29. Sep 13, 2016
Loading