1. 14 Sep, 2018 2 commits
  2. 11 Sep, 2018 2 commits
    • Deomid Ryabkov's avatar
      Update STM32 build image · f63d833a
      Deomid Ryabkov authored
       * Update CubeL4 to 1.13.0
       * Rebuild OurTLS with `-DMBEDTLS_X509_CA_CHAIN_ON_DISK`
       * Add `-Wextra` and fix build issues
      
      CL: Update STM32 build image
      
      PUBLISHED_FROM=a7eacff7580bab6c6e40bdaf6164df575a717c55
      f63d833a
    • Deomid Ryabkov's avatar
      ISM43XXX networking support (TCP, UDP client) · ab035901
      Deomid Ryabkov authored
      Listeners still TODO
      
      CL: ISM43XXX networking support (TCP, UDP client)
      
      PUBLISHED_FROM=b58ba88b9e6bd7b55ccb607d0b69cea98cb52fa5
      ab035901
  3. 06 Sep, 2018 3 commits
    • Deomid Ryabkov's avatar
      STM32: Make LWIP optional · 20f54059
      Deomid Ryabkov authored
      CL: STM32: Make LWIP optional
      
      PUBLISHED_FROM=eebffe7800a74d7b69aafd95e476b2e90328be98
      20f54059
    • Deomid Ryabkov's avatar
      Add net_if_null, a no-op net interface · 563c3130
      Deomid Ryabkov authored
      Can be used for cases where device has no networking but mongoose is still needed for its event loop.
      
      CL: mg: Add net_if_null, a no-op net interface
      
      PUBLISHED_FROM=e79b4a8667508bbde1437dda9dad77ce3a3aa630
      563c3130
    • Deomid Ryabkov's avatar
      Refactor mg polling · 421e099f
      Deomid Ryabkov authored
       * Change return type of mg_mgr_poll to return number of events
       * Add mg_mgr_min_timer
       * Refactor main poll loop to remove LwIP-specific stuff
      
      CL: Refactor mg polling
      
      PUBLISHED_FROM=dc94618b32fa3c84a2f053bd04d134297780ec82
      421e099f
  4. 21 Aug, 2018 1 commit
  5. 18 Aug, 2018 1 commit
  6. 13 Aug, 2018 4 commits
  7. 23 Jul, 2018 1 commit
  8. 12 Jul, 2018 1 commit
  9. 09 Jul, 2018 1 commit
  10. 07 Jul, 2018 1 commit
  11. 03 Jul, 2018 1 commit
  12. 27 Jun, 2018 1 commit
  13. 26 Jun, 2018 2 commits
  14. 21 Jun, 2018 1 commit
  15. 20 Jun, 2018 1 commit
    • Deomid Ryabkov's avatar
      mg_file_upload_handler: Support multiple files · 339bbee0
      Deomid Ryabkov authored
      curl -F file1 -F file2 ...
      
      Add a unit test and fix a minor memory leak when returning an error.
      
      CL: mg_file_upload_handler: Support multiple files
      
      PUBLISHED_FROM=5c4bf2be676346fb782e80f50f79df6a6721ac88
      339bbee0
  16. 18 Jun, 2018 1 commit
  17. 06 Jun, 2018 1 commit
  18. 17 May, 2018 1 commit
  19. 10 May, 2018 1 commit
  20. 26 Apr, 2018 1 commit
    • Deomid Ryabkov's avatar
      Fix TZ on ESP8266 · 53f34dea
      Deomid Ryabkov authored
      CL: Fix TZ on ESP8266
      
      PUBLISHED_FROM=435a501a8b52524bccb67bb5a8ae7e09dfb4d44a
      53f34dea
  21. 17 Apr, 2018 1 commit
  22. 13 Apr, 2018 2 commits
  23. 11 Apr, 2018 1 commit
  24. 10 Apr, 2018 2 commits
    • Deomid Ryabkov's avatar
      Add mg_url_encode_opt() · e89be2e9
      Deomid Ryabkov authored
      CL: Add `mg_url_encode_opt()` - a parametrized version of `mg_url_encode()`
      
      PUBLISHED_FROM=17fa57a7a5325b51b6e3aef3855eac4e82c35782
      e89be2e9
    • Deomid Ryabkov's avatar
      Fix mg_http_parse_header · c2fbff6d
      Deomid Ryabkov authored
      Per standard, cookies are delimited by `; `.
      
      CL: Fix mg_http_parse_header: treat ";" as a delimiter.
      
      PUBLISHED_FROM=039243c30f5fabf4a4700a43506f841b3268306a
      c2fbff6d
  25. 03 Apr, 2018 2 commits
  26. 30 Mar, 2018 2 commits
    • Deomid Ryabkov's avatar
      Mongoose net_if and ssl_if refactoring · 3e33e577
      Deomid Ryabkov authored
      A major cleanup, disentangling net_if and ssl_if.
      Pulled a lot of common logic into the core and reduced size of net_if implementations.
      
      CL: Mongoose net_if and ssl_if refactoring
      
      PUBLISHED_FROM=29bd4dcb264a1fd96b3dd164e2d880e1c2c0921e
      3e33e577
    • Deomid Ryabkov's avatar
      Fix an edge case in multipart HTTP upload parsing · c80f4c53
      Deomid Ryabkov authored
      Consume buffer as soon as we know there is no boundary there, no need to delay until next chunk arrives.
      This prevents stall where buffer fills up in one go and next chunk never arrives.
      
      CL: Fix an edge case in multipart HTTP upload parsing
      
      PUBLISHED_FROM=025f9001d272df2a75ece22b199b1944d5db9840
      c80f4c53
  27. 28 Mar, 2018 1 commit
  28. 22 Mar, 2018 1 commit
    • Deomid Ryabkov's avatar
      Improve mbuf allocation behavior · 0a90cab4
      Deomid Ryabkov authored
       * Limit total amount of headroom, in absolute terms (`MBUF_SIZE_MAX_HEADROOM`).
       * If unable to allocate with headroom, fall back to allocating the required minimum.
       * For mOS, set default `MBUF_SIZE_MULTIPLIER` to 2 to avoid floating point operations.
         Since max headroom size is now capped to 128 bytes, this will not result in much of a bloat.
      
      PUBLISHED_FROM=11d4fc65a46a805bb7c8960f89a3d0b753c58bb8
      0a90cab4