in my test application, i have an XMLSocket to communicate with a java socket server (running locally on my computer).
If i concurrently try to setup a P2P connection with another client (also running locally on my computer) using Cirrus, then on
private function initRecvStream(){
recvStream = new NetStream(nc, farPeerID);
recvStream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
recvStream.play("media");
recvStream.client = this;
}
then the client reconnects to the socket server (the socketserver receives a new connection, without receiving a disconnect before)
this happens only when initializing the receiveStream. initializing the sendStream doesn't interfere with the connection to the socket server.
What's the problem here? why does my p2p connection interfere with my XMLSocket connection to my socket server?