├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md └── package └── iodine ├── Makefile ├── files ├── iodined.config └── iodined.init └── patches ├── 010-cross-compile.patch ├── 090-memory-usage-reduce.patch └── 100-musl-compatibility.patch /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-roland/exOpenWrt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-roland/exOpenWrt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-roland/exOpenWrt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-roland/exOpenWrt/HEAD/README.md -------------------------------------------------------------------------------- /package/iodine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-roland/exOpenWrt/HEAD/package/iodine/Makefile -------------------------------------------------------------------------------- /package/iodine/files/iodined.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-roland/exOpenWrt/HEAD/package/iodine/files/iodined.config -------------------------------------------------------------------------------- /package/iodine/files/iodined.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-roland/exOpenWrt/HEAD/package/iodine/files/iodined.init -------------------------------------------------------------------------------- /package/iodine/patches/010-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-roland/exOpenWrt/HEAD/package/iodine/patches/010-cross-compile.patch -------------------------------------------------------------------------------- /package/iodine/patches/090-memory-usage-reduce.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-roland/exOpenWrt/HEAD/package/iodine/patches/090-memory-usage-reduce.patch -------------------------------------------------------------------------------- /package/iodine/patches/100-musl-compatibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-roland/exOpenWrt/HEAD/package/iodine/patches/100-musl-compatibility.patch --------------------------------------------------------------------------------