/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

  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. }