tweetcast/client/lib/websocket-js/flash-src/src/net/gimite/websocket/WebSocketMainInsecure.as
changeset 311 13702105c5ee
parent 310 526d3e411736
child 312 f8336354d107
child 314 0f1e6ce19b6d
--- a/tweetcast/client/lib/websocket-js/flash-src/src/net/gimite/websocket/WebSocketMainInsecure.as	Mon Oct 10 15:24:28 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-// Copyright: Hiroshi Ichikawa <http://gimite.net/en/>
-// License: New BSD License
-
-package net.gimite.websocket {
-
-import flash.system.Security;
-
-public class WebSocketMainInsecure extends WebSocketMain {
-
-  public function WebSocketMainInsecure() {
-    Security.allowDomain("*");
-    // Also allows HTTP -> HTTPS call. Since we have already allowed arbitrary domains, allowing
-    // HTTP -> HTTPS would not be more dangerous.
-    Security.allowInsecureDomain("*");
-    super();
-  }
-  
-}
-
-}