Hello! I'm trying to implement a connection server like the scheme below:
An accept bio listens to requests on port PORT1; On a request, the accept bio redirects the socket to PORT* and uses the socket bio (with BIO_pop()) to read from and write to the socket, so that PORT1 is reserved to the accept bio and any requests from connection bios are redirected to other ports that can be dealed by other threads. How can I do that redirecting thing? Thanxs, Daniel.