rtmfp

Sonicwall router RTMFP fix

If you have a Sonicwall router and want to make RTMFP P2P connections, you need to enable "consistent NAT": http://www.fuzeqna.com/sonicwallkb/consumer/kbdetail.asp?kbid=4320&forma...

fully closing netstreams in actionscript

In a nutshell, in AS3, if you need to close netstreams properly, you must close ALL references to the netstream.

Let's say you have a video ("remoteVideo") component with a netstream ("incomingStream") attached to it, and then you want to kill that netstream. You'd think this would do the trick:

incomingStream.close();
incomingStream.removeEventListener(NetStatusEvent.NET_STATUS, incomingStreamHandler);
incomingStream = null;

Syndicate content