how to shutdown sockets owned by an other thread
In my application I’m making use of unix domain sockets to perform local communication and I’ve used the uds
crate for that. I need to shutdown the sockets(both listeners and clients, selectively), but with my current code design I’m not able to. Can somebody help me here.
How to properly shutdown an uds listener
I am making unix domain sockets to perform local communication and have used uds
create for this. Currently I’m stuck with shutting down an uds listener and I’m not able to peoperly design or come up with a work around to get this problem solved.
Unix domain sockets in Rust
I have written a sample code wherein I’m trying to make use of unix domain sockets to communicate between 2 threads, but not able to make that happen.