I would like to know if it is possible to find the file handler from an IO::Socket::INET object.
The thing is that I have a server which creates child processes to deal with different messages and I need to communicate with the same client from two different processes. I tried to send the socket object through a pipe but the second process is considering it a string and I get
So I thought I should send only the file handler. Is it a good idea?
Thanks.