1. 09 Oct, 2019 - 1 commit
  2. 17 Sep, 2019 - 2 commits
  3. 13 Sep, 2019 - 1 commit
    • Morten Johan Sørvig's avatar
      wasm: make sendBinaryMessage work in threaded mode · 24a9e0f9
      Morten Johan Sørvig authored
      
      This fixes two issues in sendBinaryMessage(), one
      observed, and one theoretical:
      
      1) WebSocket send() does not accept data views backed
      by SharedArrayBuffer, which is the case for heap memory
      views when threading is enabled.
      
      2) We have no way of observing for how long send() will
      retain the memory view passed to it. This means we
      don’t know when the QByteArray can be safely freed.
      
      Both can be solved by copying the payload data to a
      separate ArrayBuffer, whose lifetime can be managed
      by WebSocket.
      
      Fixes: QTBUG-78078
      Change-Id: I73209080db66f38b971f2c8a727b43402357b1a9
      Reviewed-by: default avatarLorn Potter <lorn.potter@gmail.com>
      24a9e0f9
  4. 09 Sep, 2019 - 1 commit
  5. 08 Sep, 2019 - 2 commits
  6. 07 Sep, 2019 - 1 commit
  7. 05 Sep, 2019 - 2 commits
  8. 03 Sep, 2019 - 2 commits
  9. 30 Aug, 2019 - 1 commit
  10. 28 Aug, 2019 - 2 commits
  11. 27 Aug, 2019 - 1 commit
  12. 26 Aug, 2019 - 2 commits
  13. 23 Aug, 2019 - 7 commits
  14. 22 Aug, 2019 - 1 commit
  15. 30 Jul, 2019 - 1 commit
  16. 16 Jul, 2019 - 2 commits
  17. 11 Jul, 2019 - 4 commits
  18. 09 Jul, 2019 - 1 commit
  19. 01 Jul, 2019 - 2 commits
  20. 29 Jun, 2019 - 2 commits
  21. 27 Jun, 2019 - 1 commit
    • Mårten Nordheim's avatar
      Investigate tst_handshakeTimeout test flakiness · c1b6fbfb
      Mårten Nordheim authored
      
      Remove "localhost" in favor of "127.0.0.1" to avoid any name resolution.
      
      And wait 5 seconds for all websockets to timeout together, while
      printing how many have not timed-out in case of failure.
      Credits to Mårten Nordheim for coding this.
      
      With this patch, I can not reproduce the flakiness any longer.
      Lets see if this is also the case in our CI.
      
      Fixes: QTBUG-76572
      Change-Id: Ibdbafbd7786c87138bdc84ebc690177211f23f5b
      Reviewed-by: default avatarTimur Pocheptsov <timur.pocheptsov@qt.io>
      c1b6fbfb
  22. 25 Jun, 2019 - 1 commit