├── .github └── workflows │ └── build.yaml ├── .gitignore ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── bench └── bench.py ├── examples ├── autobahn │ └── echo │ │ ├── README.md │ │ ├── client.py │ │ ├── client_with_params.py │ │ ├── index.html │ │ ├── minimal.html │ │ └── server.py └── ws4py │ ├── echo_client.py │ └── echo_gevent_server.py ├── pyproject.toml ├── requirements.txt ├── setup.py ├── tests ├── test_4.py └── test_xormask.py └── wsaccel ├── __init__.py ├── dfa.h ├── utf8validator.pyx └── xormask.pyx /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/README.rst -------------------------------------------------------------------------------- /bench/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/bench/bench.py -------------------------------------------------------------------------------- /examples/autobahn/echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/examples/autobahn/echo/README.md -------------------------------------------------------------------------------- /examples/autobahn/echo/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/examples/autobahn/echo/client.py -------------------------------------------------------------------------------- /examples/autobahn/echo/client_with_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/examples/autobahn/echo/client_with_params.py -------------------------------------------------------------------------------- /examples/autobahn/echo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/examples/autobahn/echo/index.html -------------------------------------------------------------------------------- /examples/autobahn/echo/minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/examples/autobahn/echo/minimal.html -------------------------------------------------------------------------------- /examples/autobahn/echo/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/examples/autobahn/echo/server.py -------------------------------------------------------------------------------- /examples/ws4py/echo_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/examples/ws4py/echo_client.py -------------------------------------------------------------------------------- /examples/ws4py/echo_gevent_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/examples/ws4py/echo_gevent_server.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | build 2 | cython 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/tests/test_4.py -------------------------------------------------------------------------------- /tests/test_xormask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/tests/test_xormask.py -------------------------------------------------------------------------------- /wsaccel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/wsaccel/__init__.py -------------------------------------------------------------------------------- /wsaccel/dfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/wsaccel/dfa.h -------------------------------------------------------------------------------- /wsaccel/utf8validator.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/wsaccel/utf8validator.pyx -------------------------------------------------------------------------------- /wsaccel/xormask.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/methane/wsaccel/HEAD/wsaccel/xormask.pyx --------------------------------------------------------------------------------