├── .github └── workflows │ ├── build.yml │ └── build_docker.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── libraries └── dnssd_loader │ ├── dns_sd.h │ └── dnssd_loader.cpp ├── makefiles ├── AltSign-build │ ├── AltSign-files.mak │ ├── AltSign.mak │ ├── rewrite_altsign_source.py │ └── rewrite_ldid_source.py ├── AltWindowsShim.mak ├── dnssd_loader-build │ ├── config.h │ ├── dnssd_loader-files.mak │ └── dnssd_loader.mak ├── libimobiledevice-build │ ├── config.h │ ├── config.h_bak │ ├── libimobiledevice-files.mak │ └── libimobiledevice.mak ├── main.mak └── rewrite_altserver_source.py ├── shims ├── Psapi.h ├── WS2tcpip.h ├── WinSock2.h ├── direct.h ├── io.h ├── mman.h ├── muslfix.cpp ├── old-linux-polyfill.c ├── openssl │ └── applink.c ├── windows_shim.cpp └── windows_shim.h └── src ├── AltServerMain.cpp ├── AnisetteDataManager.cpp ├── WiredConnection.cpp └── common.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/.github/workflows/build_docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.o 3 | .vscode -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/README.md -------------------------------------------------------------------------------- /libraries/dnssd_loader/dns_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/libraries/dnssd_loader/dns_sd.h -------------------------------------------------------------------------------- /libraries/dnssd_loader/dnssd_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/libraries/dnssd_loader/dnssd_loader.cpp -------------------------------------------------------------------------------- /makefiles/AltSign-build/AltSign-files.mak: -------------------------------------------------------------------------------- 1 | altsign_include := -I$(BUILD_DIR)/AltSign_patched -------------------------------------------------------------------------------- /makefiles/AltSign-build/AltSign.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/AltSign-build/AltSign.mak -------------------------------------------------------------------------------- /makefiles/AltSign-build/rewrite_altsign_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/AltSign-build/rewrite_altsign_source.py -------------------------------------------------------------------------------- /makefiles/AltSign-build/rewrite_ldid_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/AltSign-build/rewrite_ldid_source.py -------------------------------------------------------------------------------- /makefiles/AltWindowsShim.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/AltWindowsShim.mak -------------------------------------------------------------------------------- /makefiles/dnssd_loader-build/config.h: -------------------------------------------------------------------------------- 1 | #define HAVE_LIBDL 1 -------------------------------------------------------------------------------- /makefiles/dnssd_loader-build/dnssd_loader-files.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/dnssd_loader-build/dnssd_loader-files.mak -------------------------------------------------------------------------------- /makefiles/dnssd_loader-build/dnssd_loader.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/dnssd_loader-build/dnssd_loader.mak -------------------------------------------------------------------------------- /makefiles/libimobiledevice-build/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/libimobiledevice-build/config.h -------------------------------------------------------------------------------- /makefiles/libimobiledevice-build/config.h_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/libimobiledevice-build/config.h_bak -------------------------------------------------------------------------------- /makefiles/libimobiledevice-build/libimobiledevice-files.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/libimobiledevice-build/libimobiledevice-files.mak -------------------------------------------------------------------------------- /makefiles/libimobiledevice-build/libimobiledevice.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/libimobiledevice-build/libimobiledevice.mak -------------------------------------------------------------------------------- /makefiles/main.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/main.mak -------------------------------------------------------------------------------- /makefiles/rewrite_altserver_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/makefiles/rewrite_altserver_source.py -------------------------------------------------------------------------------- /shims/Psapi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shims/WS2tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/shims/WS2tcpip.h -------------------------------------------------------------------------------- /shims/WinSock2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/shims/WinSock2.h -------------------------------------------------------------------------------- /shims/direct.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shims/io.h: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /shims/mman.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /shims/muslfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/shims/muslfix.cpp -------------------------------------------------------------------------------- /shims/old-linux-polyfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/shims/old-linux-polyfill.c -------------------------------------------------------------------------------- /shims/openssl/applink.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shims/windows_shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/shims/windows_shim.cpp -------------------------------------------------------------------------------- /shims/windows_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/shims/windows_shim.h -------------------------------------------------------------------------------- /src/AltServerMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/src/AltServerMain.cpp -------------------------------------------------------------------------------- /src/AnisetteDataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/src/AnisetteDataManager.cpp -------------------------------------------------------------------------------- /src/WiredConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/src/WiredConnection.cpp -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/AltServer-Linux/HEAD/src/common.h --------------------------------------------------------------------------------