Open
Description
Are there any plans on adding interaction with Unix domain sockets?
What I'd like to achieve is to interact with Docker daemon via socket as follows:
curl --unix-socket /var/run/docker.sock http:/v1.24/images/json
As I see it, there should be a separate unix.clj
module that provides client
and handler
functions.
I found a small Java example which I'm going to port to Clojure using existing Aleph abstractions. I'm new to Netty so could you at least give me a tip whether that's a good example or not?