1. 04 Jun, 2009 2 commits
  2. 25 Apr, 2009 1 commit
  3. 17 Apr, 2009 1 commit
  4. 01 Apr, 2009 1 commit
    • Max Kellermann's avatar
      client, event_pipe: explicitly ignore the write() result · 8ce2ec7a
      Max Kellermann authored
      On both locations, the result of write() can be ignored safely.  In
      event_pipe_emit_fast(), that can only be "EAGAIN", which means that
      the pipe buffer is full - no further notification required.  In
      client_init(), that would be a fatal connection error, which would be
      caught by the next event.
      
      This patch fixes gcc warnings.
      8ce2ec7a
  5. 30 Mar, 2009 2 commits
  6. 14 Mar, 2009 1 commit
  7. 13 Mar, 2009 1 commit
    • Avuton Olrich's avatar
      all: Update copyright header. · 0aee49bd
      Avuton Olrich authored
      This updates the copyright header to all be the same, which is
      pretty much an update of where to mail request for a copy of the GPL
      and the years of the MPD project. This also puts all committers under
      'The Music Player Project' umbrella. These entries should go
      individually in the AUTHORS file, for consistancy.
      0aee49bd
  8. 28 Feb, 2009 1 commit
  9. 27 Feb, 2009 1 commit
    • Max Kellermann's avatar
      client: removed duplicate "client" string from log · 9dd00dfa
      Max Kellermann authored
      Since we introduced a GLib logging domain, the "client" string appears
      twice in the log lines:
      
       client: client 0: command returned 0
      
      Removed the second one, now it looks like this:
      
       client: [0] command returned 0
      
      Still not quite good, but better than before.
      9dd00dfa
  10. 30 Jan, 2009 1 commit
  11. 25 Jan, 2009 3 commits
    • Max Kellermann's avatar
      client: use the GIOChannel for I/O · 8bc6bca5
      Max Kellermann authored
      GIOChannel is more portable than raw read()/write() calls.  We're
      using GIOChannel anyway, because we need it for plugging the client
      into the GLib main loop.
      
      Configure the GIOChannel to the bare minimum: no character set, no
      buffering.
      8bc6bca5
    • Max Kellermann's avatar
      client: use GLib's win32 IO channel on WIN32 · b0ea9756
      Max Kellermann authored
      Use g_io_channel_win32_new_socket() instead of g_io_channel_unix_new()
      on WIN32.
      b0ea9756
    • Max Kellermann's avatar
      use g_free() instead of free() · a45922cd
      Max Kellermann authored
      On some platforms, g_free() must be used for memory allocated by
      GLib.  This patch intends to correct a lot of occurrences, but is
      probably not complete.
      a45922cd
  12. 21 Jan, 2009 1 commit
  13. 17 Jan, 2009 1 commit
  14. 10 Jan, 2009 1 commit
  15. 08 Jan, 2009 1 commit
  16. 07 Jan, 2009 1 commit
  17. 03 Jan, 2009 2 commits
  18. 01 Jan, 2009 1 commit
  19. 31 Dec, 2008 1 commit
  20. 30 Dec, 2008 3 commits
  21. 29 Dec, 2008 2 commits
  22. 24 Dec, 2008 1 commit
    • Max Kellermann's avatar
      client: always attempt to flush deferred buffers · d2d11d70
      Max Kellermann authored
      When a response is very long (e.g. a large playlist > 100k songs),
      most of it will end up in the deferred buffers.  Filling the deferred
      queue is very expensive currently, because a new buffer is allocated
      for every client_write() operation.  This may lead to long delays, and
      the client might give up and disconnect meanwhile.  This patch makes
      MPD attempt to flush the deferred queue as often as possible, to work
      around this problem.  Due to the MPD 0.14 code freeze, we should not
      optimize the buffering code now.
      d2d11d70
  23. 02 Dec, 2008 1 commit
  24. 24 Nov, 2008 1 commit
  25. 22 Nov, 2008 1 commit
  26. 31 Oct, 2008 5 commits
  27. 22 Oct, 2008 1 commit
  28. 17 Oct, 2008 1 commit