-
```
Attached is a patch for FreeBSD. Feel free to include this in the next
release. It has been tested on FreeBSD 8.0, with both i386 and amd64, using
Java 1.6. Run "ant -Djdk.home=/usr/local/jdk1.6…
-
```
What steps will reproduce the problem?
code:
File socketFile = new File("/tmp/cgi.socket");
AFUNIXSocket sock = AFUNIXSocket.newInstance();
sock.connect(new AFUNIXSocketAddress(socketF…
-
```
I have a use-case where the automatic unlink of the socket on close is
undesirable. I would request a flag or mode that disables the unlinking.
My use case is atomically taking over from an exi…
-
```
What steps will reproduce the problem?
1. Attempt to connect to a non existing unix socket
2. let the java application running
3.
What is the expected output? What do you see instead?
run 'lso…
-
```
What steps will reproduce the problem?
1. Make a getSendBufferSize call on a connected AFUNIXSocket. On Linux, an
AFUNIXSocketException is thrown with message "Protocol not available".
2.
3.
What…
-
```
A recent Oracle security patch to Java changes the internal implementation of
java.net.InetSocketAddress, and eliminates the port field. This prevents
junixsocket RMI from instantiating.
https:…
-
```
Introduction :
Before explaining this issue, i would like to thank the author for this work.
I'm planning using junixsocket to communicate with nodeJs by a better way
(in term of performance) th…
-
```
Is this a bug, or is this a desired behaviour?
In AFUNIXSocketImpl.setOption send and receive buffers expect boolean as the
parameter.
I am trying to plug this library into a piece of code that …
-
```
Hi.
Is it possible to cancel the waiting accept() request (by interrupting the
Thread)?
If not, this would be a valuable addition.
Thanks!
```
Original issue reported on code.google.com by `S…
-
```
What steps will reproduce the problem?
1. Create a unix domain socket (as a Server application)
2. Read data from unix domain socket with BufferedReader.readLine()
3. Client side closes connectio…