1. 17 Jan, 2009 1 commit
  2. 16 Jan, 2009 1 commit
  3. 15 Jan, 2009 1 commit
  4. 10 Jan, 2009 2 commits
  5. 03 Jan, 2009 3 commits
  6. 30 Dec, 2008 5 commits
  7. 29 Dec, 2008 2 commits
  8. 24 Dec, 2008 1 commit
  9. 02 Dec, 2008 2 commits
  10. 07 Nov, 2008 1 commit
    • Tom Servo's avatar
      listen: fix namespace collision on OpenSolaris · ea925762
      Tom Servo authored
      The listen.c module breaks the build because the variable name used
      ("sun") for the Unix domain socket part collides with something else
      on an OpenSolaris system, likely Sun specific.  Renaming it to _sun
      (or something else of choice) fixes the build.
      
      [mk: renamed to "s_un"]
      ea925762
  11. 30 Oct, 2008 1 commit
    • Max Kellermann's avatar
      listen: set file mode 666 on the unix socket · 4d72bda4
      Max Kellermann authored
      Depending on MPD's umask, the file permissions of the unix socket were
      too restrictive, and many clients were not able to connect.  Do a
      chmod(0666) on the socket, to allow everybody to connect.
      4d72bda4
  12. 18 Oct, 2008 1 commit
  13. 17 Oct, 2008 1 commit
  14. 16 Oct, 2008 1 commit
  15. 15 Oct, 2008 3 commits
  16. 28 Aug, 2008 2 commits
    • Max Kellermann's avatar
      client: renamed all public functions · c0197c58
      Max Kellermann authored
      Functions which operate on the whole client list are prefixed with
      "client_manager_", and functions which handle just one client just get
      "client_".
      c0197c58
    • Max Kellermann's avatar
      renamed interface.c to client.c · deb29e08
      Max Kellermann authored
      I don't believe "interface" is a good name for something like
      "connection by a client to MPD", let's call it "client".  This is the
      first patch in the series which changes the name, beginning with the
      file name.
      deb29e08
  17. 12 Apr, 2008 7 commits
  18. 26 Mar, 2008 1 commit
    • Eric Wong's avatar
      notify: cleanups · 232c9f6c
      Eric Wong authored
      * move set_nonblock{,ing}() into utils.c since we use it
      elsewhere, too
      * add proper error checking to set_nonblocking()
      * use os_compat.h instead of individually #includ-ing system headers
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7217 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      232c9f6c
  19. 05 Feb, 2008 1 commit
  20. 03 Jan, 2008 1 commit
    • Eric Wong's avatar
      Cleanup #includes of standard system headers and put them in one place · cb8f1af3
      Eric Wong authored
      This will make refactoring features easier, especially now that
      pthreads support and larger refactorings are on the horizon.
      
      Hopefully, this will make porting to other platforms (even
      non-UNIX-like ones for masochists) easier, too.
      
      os_compat.h will house all the #includes for system headers
      considered to be the "core" of MPD.  Headers for optional
      features will be left to individual source files.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7130 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      cb8f1af3
  21. 05 Sep, 2007 1 commit
  22. 27 Aug, 2007 1 commit
    • Eric Wong's avatar
      export FATAL() with noreturn attribute · 0f2e9ee6
      Eric Wong authored
      This attribute was set in log.c, but not exported to other
      modules in log.h
      
      This allows us to remove some unneccessary variable
      initializations that were added in r6277.  I did
      audioOutput_shout.c a bit differently, to avoid some
      jumps.
      
      before:
      $ size src/mpd
      text    data     bss     dec     hex filename
      225546    4040   14600  244186   3b9da src/mpd
      
      after:
      $ size src/mpd
      text    data     bss     dec     hex filename
      224698    4040   14600  243338   3b68a src/mpd
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@6821 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      0f2e9ee6