Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / socket.io-client / lib / vendor / web-socket-js / flash-src / WebSocketMainInsecure.as
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
6 package {
7
8 import flash.system.*;
9
10 public class WebSocketMainInsecure extends WebSocketMain {
11
12   public function WebSocketMainInsecure() {
13     Security.allowDomain("*");
14     super();
15   }
16   
17 }
18
19 }