hypfvieh / dbus-java

Improved version of java DBus library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/)
https://hypfvieh.github.io/dbus-java/
MIT License
185 stars 73 forks source link

jnr-unixsocket with MacOS support #55

Closed lbeuster closed 5 years ago

lbeuster commented 5 years ago

The current 3.2.0-SNAPSHOT doesn't work with MacOS because the UnixSocketOption SO_PASSCRED is not supported on MacOS. A quick google search returned some Chromium code at: https://chromium.googlesource.com/chromium/src/base/+/master/posix/unix_domain_socket.cc. They just omitted the option if MacOS is running. All my local tests passed without setting this option.

I could provide a merge request...

hypfvieh commented 5 years ago

Yes please. Pull requests are always welcome.

hypfvieh commented 5 years ago

Fixed with PR #57