Skip to content
Snippets Groups Projects
  1. Feb 16, 2015
  2. Feb 12, 2015
  3. Feb 10, 2015
  4. Jan 29, 2015
  5. Jan 28, 2015
  6. Jan 21, 2015
  7. Jan 19, 2015
  8. Jan 17, 2015
  9. Dec 30, 2014
  10. Dec 27, 2014
  11. Dec 21, 2014
  12. Dec 18, 2014
    • 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. Dec 15, 2014
  14. Dec 11, 2014
  15. Dec 01, 2014
  16. Nov 28, 2014
  17. Nov 24, 2014
  18. Nov 20, 2014
  19. Nov 17, 2014
  20. Nov 13, 2014
  21. Nov 12, 2014
  22. Nov 10, 2014
  23. Nov 09, 2014
  24. Nov 07, 2014
    • 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
Loading