1. 16 Feb, 2015 2 commits
  2. 12 Feb, 2015 1 commit
  3. 10 Feb, 2015 1 commit
  4. 29 Jan, 2015 1 commit
  5. 28 Jan, 2015 1 commit
  6. 21 Jan, 2015 2 commits
  7. 19 Jan, 2015 2 commits
  8. 16 Jan, 2015 1 commit
  9. 30 Dec, 2014 1 commit
  10. 27 Dec, 2014 2 commits
  11. 21 Dec, 2014 3 commits
  12. 18 Dec, 2014 1 commit
    • Gary Coulbourne's avatar
      64-bit length fields on ARM don't work · 8cad0a72
      Gary Coulbourne authored
      ARM only allows aligned accesses.  GCC generated unaligned accesses for the copy buffer, but ARM forces alignment, causing the first two bytes to be trampled.  I changed the mechanism to create two temporaries and memcpy them in.  It now works on ARM (and x86) for large websocket chunks.
      8cad0a72
  13. 15 Dec, 2014 1 commit
  14. 11 Dec, 2014 1 commit
  15. 01 Dec, 2014 1 commit
  16. 28 Nov, 2014 2 commits
  17. 24 Nov, 2014 1 commit
  18. 20 Nov, 2014 2 commits
  19. 17 Nov, 2014 2 commits
  20. 13 Nov, 2014 1 commit
  21. 12 Nov, 2014 1 commit
  22. 10 Nov, 2014 2 commits
  23. 09 Nov, 2014 5 commits
  24. 07 Nov, 2014 3 commits
    • Johan Wikman's avatar
      If socket is about to be closed do not add to [read|write]_set. · 300a27de
      Johan Wikman authored
      If NSG_CLOSE_IMMEDIATELY is on, then the socket will be closed,
      which means that (if the socket was added to either read_set or
      write_set) the subsequent select will in turn be performed on a
      socket that has been closed.
      
      Standard socket implementations seem to ignore a descriptor
      referring to a closed socket but LWIP
      (http://savannah.nongnu.org/projects/lwip/) crashes. So better
      not to add to the sets.
      300a27de
    • Johan Wikman's avatar
      MONGOOSE_NO_CGI needs special handling. · 04a15a0c
      Johan Wikman authored
      MONGOOSE_NO_CGI is implied by both NS_DISABLE_SOCKETPAIR and
      MONGOOSE_NO_FILESYSTEM. Thus, so as not to get complaints about
      the same define being defined twice, some extra checks are needed.
      04a15a0c
    • Johan Wikman's avatar
      Added size macros. · f0f6ae05
      Johan Wikman authored
      On very resource constraind devices you need to be able to
      control the size of all buffers and structures placed on the
      stack.
      f0f6ae05