├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── dev_certificate.p12 ├── entitlements.xml ├── fileproviderctl_internal.c ├── haxx.c ├── launchd.c ├── launchd.xml └── login.c /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*.* 3 | !LICENSE 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdfugil/haxx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdfugil/haxx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdfugil/haxx/HEAD/README.md -------------------------------------------------------------------------------- /dev_certificate.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdfugil/haxx/HEAD/dev_certificate.p12 -------------------------------------------------------------------------------- /entitlements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdfugil/haxx/HEAD/entitlements.xml -------------------------------------------------------------------------------- /fileproviderctl_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdfugil/haxx/HEAD/fileproviderctl_internal.c -------------------------------------------------------------------------------- /haxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdfugil/haxx/HEAD/haxx.c -------------------------------------------------------------------------------- /launchd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdfugil/haxx/HEAD/launchd.c -------------------------------------------------------------------------------- /launchd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdfugil/haxx/HEAD/launchd.xml -------------------------------------------------------------------------------- /login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdfugil/haxx/HEAD/login.c --------------------------------------------------------------------------------