I am wondering whether it is possible for two clients to set up a websocket connection with each other, given that they have some help from the server to "locate" each other.
Currently there are messages going from a client to the server through websockets. The server simply redirects that msg to the client that needs to receive it, so I wondering if it is just possible to skip the middleman.
That is just having the server tell the two clients that need to communicate some info about one another so that they can start a websocket connect with each other. '
Is this possible? or are there some other possible issues with this