1.3.0
IPC Socket 1.3.0 changes the Java Native Interface (JNI) macOS to use multi-architecture binary for x86-64 and Apple silicon (AArch64). This was contributed by @eatkins in #12.
IPC Socket 1.3.0 also adds maxSocketLength
method to return the maximum path length for the Unix Domain Socket. Previously this query was implemented only via JNA. #13 by @eatkins.
IPC Socket is a Java wrapper around interprocess communication (IPC) using java.net.ServerSocket
and java.net.Socket
as the API. On Unix-like systems, it uses Unix Domain Socket. The path is a filesystem path name. On Windows, IPC is implemented using Named Pipe. The path must refer to an entry in \\?\pipe\
or \\.\pipe\
.