I have a client and server (for multiple client) program which are communicating through UNIX domain sockets(AF_UNIX).These are simple programs where the client is sending letters in small case to the server and the server returns the same letter in upper case.
When i kill the client using SIGKILL all the resources of the client --
like memory, socket files,etc are released .. And the server closes the connection for that particular client..
But I dont want the server to close that connection I want it to pause itself whenever the client is killed. I mean I want the server to remain in the same connection even if the client is killed.
How can I do this ???
plz help me out since this is part of my project..
plz utter request to help:(

