summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi Ichikawa <gimite@gmail.com>2012-03-17 19:37:23 +0900
committerHiroshi Ichikawa <gimite@gmail.com>2012-03-17 19:37:23 +0900
commit2ee87e910e92f2366d562efebbbec96349924df3 (patch)
tree5333a6f40bf9fcb8fd5293c50f2beeb8d132a71f
parent6ca1919e41c22fda5351d25ea2ff3c29aefdde6a (diff)
downloadweb-socket-js-2ee87e910e92f2366d562efebbbec96349924df3.tar.gz
Adding reference to futurechimp's Ruby implementation of Flash socket policy file server in README.
-rw-r--r--README.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index d54788c..b359e4d 100644
--- a/README.md
+++ b/README.md
@@ -112,7 +112,11 @@ This implementation uses Flash's socket, which means that your server must provi
If you use [web-socket-ruby](http://github.com/gimite/web-socket-ruby/tree/master) or [em-websocket](https://github.com/igrigorik/em-websocket), you don't need anything special, because they handle Flash socket policy file request. But if you already provide socket policy file at port **843**, you need to modify the file to allow access to Web Socket port, because it precedes what the libraries provide.
-If you use other Web Socket server implementation, you need to provide socket policy file yourself. See [Setting up A Flash Socket Policy File](http://www.lightsphere.com/dev/articles/flash_socket_policy.html) for details and sample script to run socket policy file server. [node.js implementation is available here](https://github.com/3rd-Eden/FlashPolicyFileServer).
+If you use other Web Socket server implementation, you need to provide socket policy file yourself. See [Setting up A Flash Socket Policy File](http://www.lightsphere.com/dev/articles/flash_socket_policy.html) for details. Implementation of socket policy file server is available at:
+
+- The article above (Perl implementation)
+- [Ruby implementation](https://github.com/futurechimp/flash_policy_server)
+- [Node.js implementation](https://github.com/3rd-Eden/FlashPolicyFileServer)
Actually, it's still better to provide socket policy file at port 843 even if you use web-socket-ruby or em-websocket. Flash always try to connect to port 843 first, so providing the file at port 843 makes startup faster.