gitextract_96c985xv/ ├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── Makefile │ ├── changes.rst │ ├── conf.py │ ├── how-it-works.rst │ ├── index.rst │ ├── installation.rst │ ├── make.bat │ ├── manpage.rst │ ├── overview.rst │ ├── platform.rst │ ├── requirements.rst │ ├── support.rst │ ├── tproxy.rst │ ├── trivia.rst │ ├── usage.rst │ └── windows.rst ├── requirements.txt ├── run ├── setup.py ├── sshuttle/ │ ├── __init__.py │ ├── __main__.py │ ├── assembler.py │ ├── client.py │ ├── cmdline.py │ ├── firewall.py │ ├── helpers.py │ ├── hostwatch.py │ ├── linux.py │ ├── methods/ │ │ ├── __init__.py │ │ ├── nat.py │ │ ├── pf.py │ │ └── tproxy.py │ ├── options.py │ ├── server.py │ ├── ssh.py │ ├── ssnet.py │ ├── ssyslog.py │ ├── stresstest.py │ └── tests/ │ ├── test_firewall.py │ ├── test_helpers.py │ ├── test_methods_nat.py │ ├── test_methods_pf.py │ └── test_methods_tproxy.py └── tox.ini