├── .gitattributes ├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── Makefile ├── README.md ├── SKSocks-server ├── SKSocks-server.cpp ├── SKSocks-server.vcxproj ├── SKSocks-server.vcxproj.filters ├── pch.cpp └── pch.h ├── SKSocks.sln └── SKSocks ├── SKSocks.cpp ├── SKSocks.vcxproj ├── SKSocks.vcxproj.filters ├── common.h ├── pch.cpp └── pch.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/README.md -------------------------------------------------------------------------------- /SKSocks-server/SKSocks-server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks-server/SKSocks-server.cpp -------------------------------------------------------------------------------- /SKSocks-server/SKSocks-server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks-server/SKSocks-server.vcxproj -------------------------------------------------------------------------------- /SKSocks-server/SKSocks-server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks-server/SKSocks-server.vcxproj.filters -------------------------------------------------------------------------------- /SKSocks-server/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks-server/pch.cpp -------------------------------------------------------------------------------- /SKSocks-server/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks-server/pch.h -------------------------------------------------------------------------------- /SKSocks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks.sln -------------------------------------------------------------------------------- /SKSocks/SKSocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks/SKSocks.cpp -------------------------------------------------------------------------------- /SKSocks/SKSocks.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks/SKSocks.vcxproj -------------------------------------------------------------------------------- /SKSocks/SKSocks.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks/SKSocks.vcxproj.filters -------------------------------------------------------------------------------- /SKSocks/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks/common.h -------------------------------------------------------------------------------- /SKSocks/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks/pch.cpp -------------------------------------------------------------------------------- /SKSocks/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficialKatana/SKSocks/HEAD/SKSocks/pch.h --------------------------------------------------------------------------------