diff -r 526d3e411736 -r 13702105c5ee tweetcast/client/lib/websocket-js/flash-src/src/net/gimite/websocket/WebSocketMainInsecure.as --- 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 -// 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(); - } - -} - -}