1. 04 Mar, 2021 3 commits
  2. 21 Jan, 2021 1 commit
  3. 01 Jan, 2021 1 commit
  4. 30 May, 2020 1 commit
  5. 26 Mar, 2020 1 commit
  6. 16 Mar, 2020 1 commit
  7. 13 Mar, 2020 2 commits
    • Rosen Penev's avatar
      replace stdint.h with cstdint · a2f5a63b
      Rosen Penev authored
      The former is deprecated by C++14. The standard says they are the same:
      
      The header defines all types and macros the same as the C standard library
      header<stdint.h>.
      Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
      a2f5a63b
    • Rosen Penev's avatar
      replace stddef.h with cstddef · 2db8bcc3
      Rosen Penev authored
      The former is deprecated with C++14. The standard says both are the same:
      
      The contents and meaning of the header<cstddef>are the same as the C
      standard library header<stddef.h>,except that it does not declare the type
      wchar_t, that it also declares the type byte and its associated
      operations (21.2.5), and as noted in 21.2.3 and 21.2.4.
      Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
      2db8bcc3
  8. 12 Mar, 2020 1 commit
  9. 04 Feb, 2020 1 commit
  10. 18 Jan, 2020 1 commit
  11. 03 Aug, 2019 1 commit
  12. 05 Jul, 2019 1 commit
  13. 03 Jul, 2019 1 commit
  14. 17 Jun, 2019 1 commit
  15. 05 Jun, 2019 3 commits
  16. 07 May, 2019 1 commit
  17. 26 Apr, 2019 1 commit
  18. 25 Apr, 2019 1 commit
  19. 04 Apr, 2019 1 commit
  20. 03 Apr, 2019 2 commits
  21. 28 Dec, 2018 5 commits
  22. 14 Dec, 2018 1 commit
  23. 19 Nov, 2018 1 commit
    • Max Kellermann's avatar
      check.h: remove obsolete header · ce49d99c
      Max Kellermann authored
      Since we switched from autotools to Meson in commit
      94592c14, we don't need to include
      `config.h` early to properly enable large file support.  Meson passes
      the required macros on the compiler command line instead of defining
      them in `config.h`.
      
      This means we can include `config.h` at any time, whenever we want to
      check its macros, and there are no ordering constraints.
      ce49d99c
  24. 08 Nov, 2018 1 commit
    • Max Kellermann's avatar
      output/httpd: fix nullptr dereference crash bug · 583208db
      Max Kellermann authored
      When `metadata_sent` is `false`, the plugin assumes there is metadata
      which must be sent, even if no metadata page was passed to the plugin.
      Initializing it to `true` avoids dereferencing this `nullptr`.
      
      Fixes #412
      583208db
  25. 31 Oct, 2018 1 commit
  26. 30 Oct, 2018 1 commit
  27. 20 Aug, 2018 1 commit
  28. 07 Aug, 2018 1 commit
  29. 06 Jul, 2018 1 commit
    • Max Kellermann's avatar
      output/httpd: remove broken DLNA support code · 5f082a27
      Max Kellermann authored
      This code was added in 21851c06 but
      looks completely broken:
      
      - the status code is "206 OK" but "206" would be "Partial Content"
      
      - the "Content-Length" header has a bogus value
      
      - the "Content-RangeX" parameter has different bogus values (why
        "Content-RangeX" anyway and not "Content-Range"?)
      
      Apart from that, there are strange undocumented non-standard headers
      which are probably there to work around bugs/expectations in one
      broken proprietary client product.  But these days, MPD doesn't bend
      over to support broken clients.  So let's kill this code.
      
      Closes #304
      5f082a27
  30. 20 Dec, 2017 1 commit