Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Commit

Permalink
Moving Flash classes to package net.gimite.websocket.
Browse files Browse the repository at this point in the history
  • Loading branch information
gimite committed Aug 6, 2011
1 parent 179a0a9 commit cf1ad53
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
Binary file modified WebSocketMain.swf
Binary file not shown.
Binary file modified WebSocketMainInsecure.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions flash-src/build.sh
Expand Up @@ -3,8 +3,8 @@
# You need Flex 4 SDK:
# http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4

mxmlc -static-link-runtime-shared-libraries -target-player=10.0.0 -output=../WebSocketMain.swf WebSocketMain.as &&
mxmlc -static-link-runtime-shared-libraries -output=../WebSocketMainInsecure.swf WebSocketMainInsecure.as &&
mxmlc -static-link-runtime-shared-libraries -target-player=10.0.0 -output=../WebSocketMain.swf -source-path=. net/gimite/websocket/WebSocketMain.as &&
mxmlc -static-link-runtime-shared-libraries -output=../WebSocketMainInsecure.swf -source-path=. net/gimite/websocket/WebSocketMainInsecure.as &&
cd .. &&
zip WebSocketMainInsecure.zip WebSocketMainInsecure.swf &&
rm WebSocketMainInsecure.swf
@@ -1,4 +1,7 @@
package {
// Copyright: Hiroshi Ichikawa <http://gimite.net/en/>
// License: New BSD License

package net.gimite.websocket {

public interface IWebSocketLogger {
function log(message:String):void;
Expand Down
Expand Up @@ -3,7 +3,7 @@
// Reference: http://dev.w3.org/html5/websockets/
// Reference: http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-76

package {
package net.gimite.websocket {

import com.adobe.net.proxies.RFC2817Socket;
import com.gsolo.encryption.MD5;
Expand Down
@@ -1,4 +1,4 @@
package {
package net.gimite.websocket {

import flash.events.Event;

Expand Down
Expand Up @@ -3,7 +3,7 @@
// Reference: http://dev.w3.org/html5/websockets/
// Reference: http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-76

package {
package net.gimite.websocket {

import flash.display.Sprite;
import flash.external.ExternalInterface;
Expand Down
Expand Up @@ -3,7 +3,7 @@
// Reference: http://dev.w3.org/html5/websockets/
// Reference: http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-76

package {
package net.gimite.websocket {

import flash.system.Security;

Expand Down

0 comments on commit cf1ad53

Please sign in to comment.