1. 14 Dec, 2016 2 commits
  2. 13 Dec, 2016 4 commits
  3. 12 Dec, 2016 1 commit
  4. 09 Dec, 2016 4 commits
  5. 08 Dec, 2016 3 commits
  6. 07 Dec, 2016 2 commits
  7. 02 Dec, 2016 2 commits
  8. 01 Dec, 2016 2 commits
  9. 29 Nov, 2016 3 commits
  10. 28 Nov, 2016 4 commits
  11. 27 Nov, 2016 1 commit
    • Deomid Ryabkov's avatar
      Minor memory shavings on ESP8266; ~2.5K less · e17fdcb0
      Deomid Ryabkov authored
       - Only allow one TCP segment in flight. Each segment is 1.5K and it
         adds up. This may increase latency, but memory is precious on ESP.
         At teh same time, optimize use of tcp_output: do not send a new segment
         on every write, only call tcp_output at the end of connection
         processing during poll.
      
       - Build LWIP with DNS disabled. We have our won resolver, and LWIP's
         allocates large static buffers (1K).
      
       - mbedTLS: Deallocate peer's certificate at the end of SSL handshake,
         reduces idle SSL connection footprint by ~1.5K.
      
       Some tweaks to the heap log viewer (which made all the above possible).
      
      PUBLISHED_FROM=6e84bba64eacb2d737561e09313918104921ea80
      e17fdcb0
  12. 25 Nov, 2016 3 commits
  13. 24 Nov, 2016 4 commits
  14. 23 Nov, 2016 3 commits
    • Dmitry Frank's avatar
      Fix mg_http_common_url_parse · 1ff61837
      Dmitry Frank authored
      The only client of `mg_http_common_url_parse` (namely,
      `mg_connect_http_base`) expects `port_i` to be the index in the address
      string at which the port was added.
      
      PUBLISHED_FROM=b095926b5485e4674e3c59ff8481171831fb61ae
      1ff61837
    • Deomid Ryabkov's avatar
      Reinstate fs_slfs_rename stub · 3a8464e4
      Deomid Ryabkov authored
      Needed by TI libc for use with add_device
      
      PUBLISHED_FROM=ff0713c5f4d04810894d8e1a82aaac25aa101365
      3a8464e4
    • Marko Mikulicic's avatar
      Fix clang formatting · 39b0b8e2
      Marko Mikulicic authored
      PUBLISHED_FROM=ea64670e42ae58bbe26abee5d928f2afcd83bd46
      39b0b8e2
  15. 22 Nov, 2016 2 commits
    • Sergey Lyubka's avatar
      Ubreak v7 build - add missing includes · 3a611864
      Sergey Lyubka authored
      PUBLISHED_FROM=01d691c9e06486cab0903b8db98e56fffc3fb234
      3a611864
    • Deomid Ryabkov's avatar
      Allow use of absolute paths on SLFS · 2180e178
      Deomid Ryabkov authored
      If the path starts with /, do not drop it.
      There are no directories on SLFS, but use of /pretend/paths/to/files.txt
      is common. What we do drop is the ./ prefix (added by mongoose when document_root=.)
      
      PUBLISHED_FROM=5108bc078dfaf8f8afa4db554b4769d9d7b8a103
      2180e178