mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
20 lines
406 B
ActionScript
20 lines
406 B
ActionScript
// 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();
|
|
}
|
|
|
|
}
|
|
|
|
}
|