/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMainInsecure.as
ActionScript | 19 lines | 9 code | 6 blank | 4 comment | 0 complexity | 5c141e43eddc11bd0c86e9b05fd2ad15 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
- // Copyright: Hiroshi Ichikawa <http://gimite.net/en/>
- // License: New BSD License
- // Reference: http://dev.w3.org/html5/websockets/
- // Reference: http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-76
- package {
- import flash.system.*;
- public class WebSocketMainInsecure extends WebSocketMain {
- public function WebSocketMainInsecure() {
- Security.allowDomain("*");
- super();
- }
-
- }
- }