[go-nuts] Re: How to make a server being server and client simultaneously

2020-01-15 Thread GopherNewbie
An exercise I am trying to do. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit

[go-nuts] How to make a server being server and client simultaneously

2020-01-14 Thread GopherNewbie
Hello Gophers, I programmed a server (A) that listens on 2 different ports, but I would like to change one of the ports to be sending the client's received requests to another server (B) so that when the server (B) replies the server (A) sends the answer to that specific client. I got some iss