org.freedesktop.dbus.transport.jnr.JnrUnixSocketHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbus-java-transport-jnr-unixsocket Show documentation
Show all versions of dbus-java-transport-jnr-unixsocket Show documentation
dbus-java transport providing unixsocket support using jnr-unixsocket.
The newest version!
package org.freedesktop.dbus.transport.jnr;
import jnr.unixsocket.Credentials;
import jnr.unixsocket.UnixSocketOptions;
import java.io.IOException;
import java.nio.channels.SocketChannel;
public final class JnrUnixSocketHelper {
private JnrUnixSocketHelper() {}
/**
* Get the UID of peer credentials.
*
* @param _sock socket to read from
* @return UID, -1 if given {@link SocketChannel} was null
*
* @throws IOException when socket channel fails to read SO_PEERCRED option
*/
public static int getUid(SocketChannel _sock) throws IOException {
if (_sock == null) {
return -1;
}
Credentials credentials = _sock.getOption(UnixSocketOptions.SO_PEERCRED);
return credentials.getUid();
}
}