This client has hard coded socket connections to socket.AF_UNIX. This prevents the client from making a tcp connection.
Are there plans to support connections over tcp?
Perhaps making this parameter overridable parameter like pyagentx.SOCKET_PATH, e.i. pyagentx.SOCKET_FAMILY = socket.AF_UNIX?
and the code in network.py
self.socket = socket.socket( pyagentx.SOCKET_FAMILY, socket.SOCK_STREAM )
I can submit a patch, if that helps.
Thanks,
Hoa