|
|
|
|
|
by twic
1431 days ago
|
|
Not quite. Terminating a process releases its filehandles, and if any sockets are now unreferenced, they are closed. But if there is a live filehandle in another process, the socket stays alive. You can send socket file handles over UNIX domain sockets, so you could use this to export your list of sockets to persist over restart. |
|