diff -r 436a31d11f1d -r 70c9688a1486 tweetcast/client/lib/gimite-web-socket-js-55ae639/flash-src/src/net/gimite/websocket/WebSocketMainInsecure.as --- a/tweetcast/client/lib/gimite-web-socket-js-55ae639/flash-src/src/net/gimite/websocket/WebSocketMainInsecure.as Thu Oct 06 11:56:48 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(); - } - -} - -}