├── .github └── workflows │ └── build.yaml ├── .gitignore ├── MANIFEST.in ├── NOTICE ├── README.md ├── debian ├── README ├── README.Debian ├── README.source ├── changelog ├── compat ├── control ├── copyright ├── docs ├── python3-iptables.postinst ├── rules └── source │ └── format ├── doc ├── Makefile ├── _templates │ └── layout.html ├── conf.py ├── examples.rst ├── index.rst ├── intro.rst └── usage.rst ├── iptc ├── __init__.py ├── easy.py ├── errors.py ├── ip4tc.py ├── ip6tc.py ├── util.py ├── version.py └── xtables.py ├── libxtwrapper └── wrapper.c ├── setup.py └── tests ├── __init__.py ├── test_iptc.py ├── test_matches.py └── test_targets.py /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/README.md -------------------------------------------------------------------------------- /debian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/debian/README -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /debian/python3-iptables.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/debian/python3-iptables.postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/doc/_templates/layout.html -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/doc/intro.rst -------------------------------------------------------------------------------- /doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/doc/usage.rst -------------------------------------------------------------------------------- /iptc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/iptc/__init__.py -------------------------------------------------------------------------------- /iptc/easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/iptc/easy.py -------------------------------------------------------------------------------- /iptc/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/iptc/errors.py -------------------------------------------------------------------------------- /iptc/ip4tc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/iptc/ip4tc.py -------------------------------------------------------------------------------- /iptc/ip6tc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/iptc/ip6tc.py -------------------------------------------------------------------------------- /iptc/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/iptc/util.py -------------------------------------------------------------------------------- /iptc/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/iptc/version.py -------------------------------------------------------------------------------- /iptc/xtables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/iptc/xtables.py -------------------------------------------------------------------------------- /libxtwrapper/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/libxtwrapper/wrapper.c -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_iptc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/tests/test_iptc.py -------------------------------------------------------------------------------- /tests/test_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/tests/test_matches.py -------------------------------------------------------------------------------- /tests/test_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldx/python-iptables/HEAD/tests/test_targets.py --------------------------------------------------------------------------------