├── .gitignore ├── README.md └── softethervpn ├── Makefile └── patches ├── 100-ccldflags.patch ├── 101-multicallbinary.patch ├── 102-regionunlock.patch ├── 103-noeucjp.patch ├── 104-optimizedeps.patch ├── 105-nosslv3.patch ├── 200-openwrtrc.patch └── 201-minimize.patch /.gitignore: -------------------------------------------------------------------------------- 1 | *.tar.gz 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/el1n/OpenWRT-package-softether/HEAD/README.md -------------------------------------------------------------------------------- /softethervpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/el1n/OpenWRT-package-softether/HEAD/softethervpn/Makefile -------------------------------------------------------------------------------- /softethervpn/patches/100-ccldflags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/el1n/OpenWRT-package-softether/HEAD/softethervpn/patches/100-ccldflags.patch -------------------------------------------------------------------------------- /softethervpn/patches/101-multicallbinary.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/el1n/OpenWRT-package-softether/HEAD/softethervpn/patches/101-multicallbinary.patch -------------------------------------------------------------------------------- /softethervpn/patches/102-regionunlock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/el1n/OpenWRT-package-softether/HEAD/softethervpn/patches/102-regionunlock.patch -------------------------------------------------------------------------------- /softethervpn/patches/103-noeucjp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/el1n/OpenWRT-package-softether/HEAD/softethervpn/patches/103-noeucjp.patch -------------------------------------------------------------------------------- /softethervpn/patches/104-optimizedeps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/el1n/OpenWRT-package-softether/HEAD/softethervpn/patches/104-optimizedeps.patch -------------------------------------------------------------------------------- /softethervpn/patches/105-nosslv3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/el1n/OpenWRT-package-softether/HEAD/softethervpn/patches/105-nosslv3.patch -------------------------------------------------------------------------------- /softethervpn/patches/200-openwrtrc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/el1n/OpenWRT-package-softether/HEAD/softethervpn/patches/200-openwrtrc.patch -------------------------------------------------------------------------------- /softethervpn/patches/201-minimize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/el1n/OpenWRT-package-softether/HEAD/softethervpn/patches/201-minimize.patch --------------------------------------------------------------------------------