├── .gitignore ├── README.md ├── client ├── css │ └── index.css ├── index.php ├── js │ └── index.js └── test.html ├── image_generator.py ├── keypress.py ├── mouse.py ├── opencv.sh ├── server.py └── websockets-2.2 ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README ├── build └── lib │ └── websockets │ ├── __init__.py │ ├── client.py │ ├── exceptions.py │ ├── framing.py │ ├── handshake.py │ ├── http.py │ ├── protocol.py │ ├── server.py │ ├── test_client_server.py │ ├── test_framing.py │ ├── test_handshake.py │ ├── test_http.py │ ├── test_protocol.py │ ├── test_uri.py │ ├── uri.py │ └── version.py ├── dist └── websockets-2.2-py3.4.egg ├── setup.cfg ├── setup.py ├── websockets.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt └── top_level.txt └── websockets ├── __init__.py ├── client.py ├── exceptions.py ├── framing.py ├── handshake.py ├── http.py ├── protocol.py ├── server.py ├── test_client_server.py ├── test_framing.py ├── test_handshake.py ├── test_http.py ├── test_protocol.py ├── test_uri.py ├── uri.py └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/README.md -------------------------------------------------------------------------------- /client/css/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/client/index.php -------------------------------------------------------------------------------- /client/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/client/js/index.js -------------------------------------------------------------------------------- /client/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/client/test.html -------------------------------------------------------------------------------- /image_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/image_generator.py -------------------------------------------------------------------------------- /keypress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/keypress.py -------------------------------------------------------------------------------- /mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/mouse.py -------------------------------------------------------------------------------- /opencv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/opencv.sh -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/server.py -------------------------------------------------------------------------------- /websockets-2.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/LICENSE -------------------------------------------------------------------------------- /websockets-2.2/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE -------------------------------------------------------------------------------- /websockets-2.2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/PKG-INFO -------------------------------------------------------------------------------- /websockets-2.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/README -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/__init__.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/client.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/exceptions.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/framing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/framing.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/handshake.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/http.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/protocol.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/server.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/test_client_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/test_client_server.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/test_framing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/test_framing.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/test_handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/test_handshake.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/test_http.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/test_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/test_protocol.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/test_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/test_uri.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/build/lib/websockets/uri.py -------------------------------------------------------------------------------- /websockets-2.2/build/lib/websockets/version.py: -------------------------------------------------------------------------------- 1 | version = '2.2' 2 | -------------------------------------------------------------------------------- /websockets-2.2/dist/websockets-2.2-py3.4.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/dist/websockets-2.2-py3.4.egg -------------------------------------------------------------------------------- /websockets-2.2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/setup.cfg -------------------------------------------------------------------------------- /websockets-2.2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/setup.py -------------------------------------------------------------------------------- /websockets-2.2/websockets.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets.egg-info/PKG-INFO -------------------------------------------------------------------------------- /websockets-2.2/websockets.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /websockets-2.2/websockets.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /websockets-2.2/websockets.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | websockets 2 | -------------------------------------------------------------------------------- /websockets-2.2/websockets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/__init__.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/client.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/exceptions.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/framing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/framing.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/handshake.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/http.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/protocol.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/server.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/test_client_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/test_client_server.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/test_framing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/test_framing.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/test_handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/test_handshake.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/test_http.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/test_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/test_protocol.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/test_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/test_uri.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekchandan/Remote-Desktop-Connection/HEAD/websockets-2.2/websockets/uri.py -------------------------------------------------------------------------------- /websockets-2.2/websockets/version.py: -------------------------------------------------------------------------------- 1 | version = '2.2' 2 | --------------------------------------------------------------------------------