├── .coveragerc ├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lightsocks ├── __init__.py ├── core │ ├── __init__.py │ ├── cipher.py │ ├── password.py │ ├── securesocket.py │ ├── test_cipher.py │ ├── test_password.py │ └── test_securesocket.py ├── local.py ├── server.py ├── test_local.py ├── test_server.py └── utils │ ├── __init__.py │ ├── config.py │ └── net.py ├── lslocal.py ├── lsserver.py └── requirements.txt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/.coveragerc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | repo_token: RDQCSHcbveePZLzPOQFjJabfC5DnaPpez 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/README.md -------------------------------------------------------------------------------- /lightsocks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lightsocks/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lightsocks/core/cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/core/cipher.py -------------------------------------------------------------------------------- /lightsocks/core/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/core/password.py -------------------------------------------------------------------------------- /lightsocks/core/securesocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/core/securesocket.py -------------------------------------------------------------------------------- /lightsocks/core/test_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/core/test_cipher.py -------------------------------------------------------------------------------- /lightsocks/core/test_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/core/test_password.py -------------------------------------------------------------------------------- /lightsocks/core/test_securesocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/core/test_securesocket.py -------------------------------------------------------------------------------- /lightsocks/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/local.py -------------------------------------------------------------------------------- /lightsocks/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/server.py -------------------------------------------------------------------------------- /lightsocks/test_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/test_local.py -------------------------------------------------------------------------------- /lightsocks/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/test_server.py -------------------------------------------------------------------------------- /lightsocks/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lightsocks/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/utils/config.py -------------------------------------------------------------------------------- /lightsocks/utils/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lightsocks/utils/net.py -------------------------------------------------------------------------------- /lslocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lslocal.py -------------------------------------------------------------------------------- /lsserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linw1995/lightsocks-python/HEAD/lsserver.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | typing==3.6.2 2 | --------------------------------------------------------------------------------