PageRenderTime 32ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMainInsecure.as

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
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
  1. // Copyright: Hiroshi Ichikawa <http://gimite.net/en/>
  2. // License: New BSD License
  3. // Reference: http://dev.w3.org/html5/websockets/
  4. // Reference: http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-76
  5. package {
  6. import flash.system.*;
  7. public class WebSocketMainInsecure extends WebSocketMain {
  8. public function WebSocketMainInsecure() {
  9. Security.allowDomain("*");
  10. super();
  11. }
  12. }
  13. }