├── .gitignore ├── LICENSE ├── README.rst ├── examples ├── chatroom │ ├── README.md │ ├── chatroom.py │ ├── flashpolicy.xml │ └── index.html ├── ping │ ├── flashpolicy.xml │ ├── index.html │ └── ping.py └── transports │ ├── flashpolicy.xml │ ├── index.html │ └── transports.py ├── flashpolicy.xml ├── setup.py ├── tests ├── __init__.py └── proto_test.py └── tornadio ├── __init__.py ├── conn.py ├── flashserver.py ├── periodic.py ├── persistent.py ├── polling.py ├── pollingsession.py ├── proto.py ├── router.py ├── server.py └── session.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/README.rst -------------------------------------------------------------------------------- /examples/chatroom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/examples/chatroom/README.md -------------------------------------------------------------------------------- /examples/chatroom/chatroom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/examples/chatroom/chatroom.py -------------------------------------------------------------------------------- /examples/chatroom/flashpolicy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/examples/chatroom/flashpolicy.xml -------------------------------------------------------------------------------- /examples/chatroom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/examples/chatroom/index.html -------------------------------------------------------------------------------- /examples/ping/flashpolicy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/examples/ping/flashpolicy.xml -------------------------------------------------------------------------------- /examples/ping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/examples/ping/index.html -------------------------------------------------------------------------------- /examples/ping/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/examples/ping/ping.py -------------------------------------------------------------------------------- /examples/transports/flashpolicy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/examples/transports/flashpolicy.xml -------------------------------------------------------------------------------- /examples/transports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/examples/transports/index.html -------------------------------------------------------------------------------- /examples/transports/transports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/examples/transports/transports.py -------------------------------------------------------------------------------- /flashpolicy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/flashpolicy.xml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | from .proto_test import * 2 | -------------------------------------------------------------------------------- /tests/proto_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tests/proto_test.py -------------------------------------------------------------------------------- /tornadio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/__init__.py -------------------------------------------------------------------------------- /tornadio/conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/conn.py -------------------------------------------------------------------------------- /tornadio/flashserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/flashserver.py -------------------------------------------------------------------------------- /tornadio/periodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/periodic.py -------------------------------------------------------------------------------- /tornadio/persistent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/persistent.py -------------------------------------------------------------------------------- /tornadio/polling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/polling.py -------------------------------------------------------------------------------- /tornadio/pollingsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/pollingsession.py -------------------------------------------------------------------------------- /tornadio/proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/proto.py -------------------------------------------------------------------------------- /tornadio/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/router.py -------------------------------------------------------------------------------- /tornadio/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/server.py -------------------------------------------------------------------------------- /tornadio/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjoes/tornadio/HEAD/tornadio/session.py --------------------------------------------------------------------------------