ok so I have the following :
A process which created a unix domain socket (/tmp/blah) on my local machine that I want to send to a remote machine
4.3.2.1:9999 and end up as /tmp/blah on which side has another process that wants to read from the socket.
On the sending side I have :
spiped -e -F -s /tmp/blah -t
4.3.2.1:9999 -k key.key
yet it complains that the address is already in use...I thought that the intent of the source directive is to read from given source but perhaps it is trying to bind to that socket?