1. 08 Aug, 2022 1 commit
  2. 27 Jul, 2022 1 commit
  3. 20 Jul, 2022 1 commit
  4. 08 Jul, 2022 1 commit
  5. 01 Jul, 2022 10 commits
  6. 19 May, 2022 1 commit
  7. 26 Apr, 2022 2 commits
  8. 24 Apr, 2022 1 commit
  9. 20 Apr, 2022 1 commit
  10. 16 Mar, 2022 1 commit
  11. 14 Mar, 2022 2 commits
  12. 15 Dec, 2021 2 commits
  13. 06 Dec, 2021 1 commit
  14. 03 Dec, 2021 1 commit
  15. 01 Dec, 2021 2 commits
  16. 30 Nov, 2021 1 commit
  17. 26 Nov, 2021 2 commits
  18. 23 Nov, 2021 2 commits
  19. 22 Nov, 2021 1 commit
  20. 19 Nov, 2021 1 commit
  21. 12 Nov, 2021 2 commits
    • Rosen Penev's avatar
      add various nodiscard · 5deca66f
      Rosen Penev authored
      Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
      5deca66f
    • Rosen Penev's avatar
      treewide: replace lock_guard with scoped_lock · 4e0e4c00
      Rosen Penev authored
      SonarLint reports the latter to be better:
      
      std::scoped_lock basically provides the same feature as std::lock_guard,
      but is more generic: It can lock several mutexes at the same time, with a
      deadlock prevention mechanism (see {rule:cpp:S5524}). The equivalent code
      to perform simultaneous locking with std::lock_guard is significantly more
      complex. Therefore, it is simpler to use std::scoped_lock all the time,
      even when locking only one mutex (there will be no performance impact).
      Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
      4e0e4c00
  22. 11 Nov, 2021 1 commit
  23. 09 Nov, 2021 1 commit
  24. 08 Nov, 2021 1 commit
    • Max Audron's avatar
      upnp: expose interface configuration on UpnpInit2() · 4ed60a57
      Max Audron authored
      Adds the Interface Name as an argument to the *Init functions to make it
      possible to select which interface is used by upnp to detect servers.
      
      Currently "nullptr" is passed in to let the upnp library select an
      interface, as before.
      4ed60a57