1. 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
  2. 12 Mar, 2020 1 commit
  3. 04 Feb, 2020 1 commit
  4. 18 Jan, 2020 1 commit
  5. 03 Aug, 2019 1 commit
  6. 05 Jul, 2019 1 commit
  7. 03 Jul, 2019 1 commit
  8. 17 Jun, 2019 1 commit
  9. 05 Jun, 2019 3 commits
  10. 07 May, 2019 1 commit
  11. 26 Apr, 2019 1 commit
  12. 25 Apr, 2019 1 commit
  13. 04 Apr, 2019 1 commit
  14. 03 Apr, 2019 2 commits
  15. 28 Dec, 2018 5 commits
  16. 14 Dec, 2018 1 commit
  17. 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
  18. 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
  19. 31 Oct, 2018 1 commit
  20. 30 Oct, 2018 1 commit
  21. 20 Aug, 2018 1 commit
  22. 07 Aug, 2018 1 commit
  23. 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
  24. 20 Dec, 2017 1 commit
  25. 19 Dec, 2017 1 commit
  26. 14 Nov, 2017 1 commit
    • Max Kellermann's avatar
      output/httpd: flush encoder after tag · 014f8cd6
      Max Kellermann authored
      Without the flush, ReadPage() may not return any data, or not all
      data.  This may result in incomplete ddata the new "header" page,
      corrupting streams with some encoders such as Vorbis.
      
      Fixes #145
      014f8cd6
  27. 10 Nov, 2017 6 commits