[tor-commits] [flashproxy/master] Changes I needed to make return_of_the_rtmfpcat.as compile.

dcf at torproject.org dcf at torproject.org
Sun Jun 12 08:56:28 UTC 2011


commit bbfb3e242a38e789e68a160abf4dede04ffbe3ca
Author: David Fifield <david at bamsoftware.com>
Date:   Thu May 26 22:28:00 2011 -0700

    Changes I needed to make return_of_the_rtmfpcat.as compile.
---
 return_of_the_rtmfpcat.as |   14 ++++++--------
 1 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/return_of_the_rtmfpcat.as b/return_of_the_rtmfpcat.as
index ed582b8..a4ec182 100644
--- a/return_of_the_rtmfpcat.as
+++ b/return_of_the_rtmfpcat.as
@@ -14,15 +14,13 @@ package
     import flash.events.ProgressEvent;
     import flash.events.SecurityErrorEvent;
     import flash.utils.ByteArray;
+    import flash.utils.clearTimeout;
     import flash.utils.setTimeout;
     import flash.utils.clearInterval;
     import flash.utils.setInterval;
     import flash.utils.setTimeout;
     import flash.net.NetConnection;
 
-    import rtmfp.RTMFPSocket;
-    import rtmfp.events.RTMFPSocketEvent;
-
     public class return_of_the_rtmfpcat extends Sprite
     {
         /* David's relay (nickname 3VXRyxz67OeRoqHn) that also serves a
@@ -423,11 +421,11 @@ class RTMFPSocket extends EventDispatcher
         send_stream.publish(DATA); 
 
         recv_stream = new NetStream(circon, clientID);
-        var client:RTMFPSocketClient = new RTMFPSocketClient();
-        client.addEventListener(ProgressEvent.SOCKET_DATA, function (event:ProgressEvent):void {
+        var client_rtmfp:RTMFPSocketClient = new RTMFPSocketClient();
+        client_rtmfp.addEventListener(ProgressEvent.SOCKET_DATA, function (event:ProgressEvent):void {
             dispatchEvent(event);
         }, false, 0, true);
-        recv_stream.client = client;
+        recv_stream.client = client_rtmfp;
         recv_stream.play(DATA);
     }
 
@@ -469,9 +467,9 @@ class RTMFPSocket extends EventDispatcher
     }
 
 
-    public function readBytes(bytes:ByteArray):void
+    public function readBytes(bytes:ByteArray, offset:uint = 0, length:uint = 0):void
     {
-        recv_stream.client.bytes.readBytes(bytes);
+        recv_stream.client.bytes.readBytes(bytes, offset, length);
     }
 
     public function writeBytes(bytes:ByteArray):void





More information about the tor-commits mailing list