rtmfp
Sonicwall router RTMFP fix
Submitted by benl on Thu, 04/21/2011 - 11:14
Related Terms :
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
Submitted by benl on Tue, 01/18/2011 - 15:46
Related Terms :
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;