in an Erlang process, how could i receive from an ssl socket, and at the same time receive from another erlang process with the receive primitive?
the idea is to forward what comes from the socket to another process; and backwards.
my only option so far is to use some time receiving from each end, then switch. that, of course, will delay the processing of the messages received on one interface, while receiving from the other one. do you see any other way to do this? if only Erlang would let me use one process to receive from the socket, and another one to send to the socket...