I'm trying to create a message pipeline over Linux domain sockets between a .NET Core and pure C application and decided to use Apache thrift for that.
The problem is that using their .NET Core library I can't seem to be able to find out how to create a TServerTransport
over unix sockets instead of ip sockets.
It seems to me that the .NET Core implementation work only via TCPListener
which is - if I understand it correctly - tied to network sockets. I think I might be missing something, however.