├── .gitattributes ├── .gitignore ├── ADHERE_LICENSE.md ├── Download.svg ├── LICENSE ├── Library ├── Aspects │ ├── Aspects.podspec │ ├── Aspects.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Aspects │ │ ├── Info.plist │ │ └── Source │ │ │ └── Aspects.swift │ └── AspectsTests │ │ ├── AspectsTests.swift │ │ └── Info.plist ├── CallbackURLKit │ ├── .swift-version │ ├── CallbackURLKit.podspec │ ├── CallbackURLKit.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── CallbackURLKit.xcscheme │ │ │ └── CallbackURLKitOSX.xcscheme │ ├── CallbackURLKit │ │ ├── CallbackURLKit.h │ │ └── Info.plist │ ├── CallbackURLKitClients │ │ ├── CallbackURLKitClients.h │ │ └── Info.plist │ ├── CallbackURLKitOSX │ │ ├── CallbackURLKitOSX.h │ │ └── Info.plist │ ├── Clients │ │ └── GoogleChrome.swift │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ ├── SampleApp │ │ ├── CallbackURLKitDemo.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── CallbackURLKitDemo.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── CallbackURLKitDemo │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── CallbackURLKitDemo.swift │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ ├── CallbackURLKitDemoOSX │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ └── Info.plist │ │ └── Podfile │ ├── Sources │ │ ├── CallbackURLKit.swift │ │ ├── Client.swift │ │ ├── Extensions.swift │ │ ├── Manager.swift │ │ └── Request.swift │ └── logo.png ├── ICSMainFramework │ ├── ICSMainFramework.podspec │ ├── ICSMainFramework.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ICSMainFramework.xcscheme │ ├── ICSMainFramework │ │ ├── AppConfiguration.swift │ │ ├── AppDelegate.swift │ │ ├── AppEnvironment.swift │ │ ├── AppLifeCycle.swift │ │ ├── ICSMainFramework.h │ │ ├── Info.plist │ │ ├── OBJCObjectFactory.h │ │ └── OBJCObjectFactory.m │ └── ICSMainFrameworkTests │ │ ├── ICSMainFrameworkTests.swift │ │ └── Info.plist ├── ShadowPath │ ├── ShadowPath.podspec │ ├── ShadowPath.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ShadowPath │ │ ├── Antinat │ │ │ ├── an_config.h │ │ │ ├── client │ │ │ │ ├── an_core.h │ │ │ │ ├── an_core.m │ │ │ │ ├── an_direct.m │ │ │ │ ├── an_internals.h │ │ │ │ ├── an_proxy.m │ │ │ │ ├── an_socks4.m │ │ │ │ ├── an_socks5.m │ │ │ │ ├── an_ssl.m │ │ │ │ ├── antinat.h │ │ │ │ ├── iscmd5.h │ │ │ │ └── iscmd5.m │ │ │ ├── expat-lib │ │ │ │ ├── include │ │ │ │ │ └── expat │ │ │ │ │ │ ├── expat.h │ │ │ │ │ │ └── expat_external.h │ │ │ │ └── lib │ │ │ │ │ └── libexpat.a │ │ │ ├── fmemopen.c │ │ │ ├── fmemopen.h │ │ │ └── server │ │ │ │ ├── AntinatServer.h │ │ │ │ ├── AntinatServer.m │ │ │ │ ├── addrinfo.m │ │ │ │ ├── an_main.h │ │ │ │ ├── an_main.m │ │ │ │ ├── an_serv.h │ │ │ │ ├── auth.m │ │ │ │ ├── config.m │ │ │ │ ├── conn.m │ │ │ │ ├── libds.m │ │ │ │ ├── loggers.m │ │ │ │ ├── os_unix.m │ │ │ │ ├── socks4.m │ │ │ │ └── socks5.m │ │ ├── Info.plist │ │ ├── Privoxy │ │ │ ├── actionlist.h │ │ │ ├── actions.h │ │ │ ├── actions.m │ │ │ ├── cgi.c │ │ │ ├── cgi.h │ │ │ ├── cgiedit.c │ │ │ ├── cgiedit.h │ │ │ ├── cgisimple.c │ │ │ ├── cgisimple.h │ │ │ ├── deanimate.c │ │ │ ├── deanimate.h │ │ │ ├── encode.c │ │ │ ├── encode.h │ │ │ ├── errlog.h │ │ │ ├── errlog.m │ │ │ ├── filters.c │ │ │ ├── filters.h │ │ │ ├── gateway.c │ │ │ ├── gateway.h │ │ │ ├── jbsockets.c │ │ │ ├── jbsockets.h │ │ │ ├── jcc.h │ │ │ ├── jcc.m │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── loadcfg.c │ │ │ ├── loadcfg.h │ │ │ ├── loaders.c │ │ │ ├── loaders.h │ │ │ ├── miscutil.c │ │ │ ├── miscutil.h │ │ │ ├── parsers.c │ │ │ ├── parsers.h │ │ │ ├── pcre │ │ │ │ ├── chartables.c │ │ │ │ ├── get.c │ │ │ │ ├── internal.h │ │ │ │ ├── pcre.c │ │ │ │ ├── pcre.h │ │ │ │ ├── pcreposix.c │ │ │ │ ├── pcreposix.h │ │ │ │ └── study.c │ │ │ ├── pcrs.c │ │ │ ├── pcrs.h │ │ │ ├── project.h │ │ │ ├── radix.c │ │ │ ├── radix.h │ │ │ ├── sp_config.h │ │ │ ├── ssplit.c │ │ │ ├── ssplit.h │ │ │ ├── urlmatch.c │ │ │ └── urlmatch.h │ │ ├── ShadowPath.h │ │ ├── libmaxminddb │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .perltidyrc │ │ │ ├── .travis.yml │ │ │ ├── .uncrustify.cfg │ │ │ ├── AUTHORS │ │ │ ├── Changes.md │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── NOTICE │ │ │ ├── README.dev.md │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── bin │ │ │ │ ├── Makefile.am │ │ │ │ └── mmdblookup.c │ │ │ ├── bootstrap │ │ │ ├── common.mk │ │ │ ├── configure.ac │ │ │ ├── dev-bin │ │ │ │ ├── make-man-pages.pl │ │ │ │ ├── make-release.sh │ │ │ │ ├── ppa-release.sh │ │ │ │ ├── regen-prototypes.pl │ │ │ │ ├── regen-win32-test-projs.pl │ │ │ │ ├── uncrustify-all.sh │ │ │ │ └── valgrind-all.pl │ │ │ ├── doc │ │ │ │ ├── libmaxminddb.md │ │ │ │ └── mmdblookup.md │ │ │ ├── include │ │ │ │ ├── maxminddb.h │ │ │ │ ├── maxminddb_config.h │ │ │ │ └── maxminddb_config.h.in │ │ │ ├── projects │ │ │ │ ├── VS12-tests │ │ │ │ │ ├── bad_pointers.vcxproj │ │ │ │ │ ├── basic_lookup.vcxproj │ │ │ │ │ ├── data_entry_list.vcxproj │ │ │ │ │ ├── data_types.vcxproj │ │ │ │ │ ├── dump.vcxproj │ │ │ │ │ ├── get_value.vcxproj │ │ │ │ │ ├── get_value_pointer_bug.vcxproj │ │ │ │ │ ├── ipv4_start_cache.vcxproj │ │ │ │ │ ├── ipv6_lookup_in_ipv4.vcxproj │ │ │ │ │ ├── libtap.vcxproj │ │ │ │ │ ├── maxminddb_test_helper.vcxproj │ │ │ │ │ ├── metadata.vcxproj │ │ │ │ │ ├── no_map_get_value.vcxproj │ │ │ │ │ ├── read_node.vcxproj │ │ │ │ │ ├── shared.vcxproj │ │ │ │ │ ├── threads.vcxproj │ │ │ │ │ └── version.vcxproj │ │ │ │ ├── VS12 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── libmaxminddb-release.props │ │ │ │ │ ├── libmaxminddb-x64.props │ │ │ │ │ ├── libmaxminddb.props │ │ │ │ │ ├── libmaxminddb.sln │ │ │ │ │ ├── libmaxminddb.vcxproj │ │ │ │ │ ├── libmaxminddb.vcxproj.filters │ │ │ │ │ └── maxminddb_config.h │ │ │ │ └── test.vcxproj.template │ │ │ ├── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── libmaxminddb.pc.in │ │ │ │ ├── maxminddb-compat-util.h │ │ │ │ └── maxminddb.c │ │ │ └── t │ │ │ │ ├── Makefile.am │ │ │ │ ├── bad_pointers_t.c │ │ │ │ ├── basic_lookup_t.c │ │ │ │ ├── compile_c++_t.pl │ │ │ │ ├── data_entry_list_t.c │ │ │ │ ├── data_types_t.c │ │ │ │ ├── dump_t.c │ │ │ │ ├── get_value_pointer_bug_t.c │ │ │ │ ├── get_value_t.c │ │ │ │ ├── ipv4_start_cache_t.c │ │ │ │ ├── ipv6_lookup_in_ipv4_t.c │ │ │ │ ├── maxminddb_test_helper.c │ │ │ │ ├── maxminddb_test_helper.h │ │ │ │ ├── metadata_pointers_t.c │ │ │ │ ├── metadata_t.c │ │ │ │ ├── mmdblookup_t.pl │ │ │ │ ├── no_map_get_value_t.c │ │ │ │ ├── read_node_t.c │ │ │ │ ├── threads_t.c │ │ │ │ └── version_t.c │ │ ├── libopenssl │ │ │ ├── include │ │ │ │ ├── LICENSE │ │ │ │ └── openssl │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1_mac.h │ │ │ │ │ ├── asn1t.h │ │ │ │ │ ├── bio.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── cms.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── des_old.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dso.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── krb5_asn.h │ │ │ │ │ ├── kssl.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mdc2.h │ │ │ │ │ ├── modes.h │ │ │ │ │ ├── obj_mac.h │ │ │ │ │ ├── objects.h │ │ │ │ │ ├── ocsp.h │ │ │ │ │ ├── opensslconf.h │ │ │ │ │ ├── opensslv.h │ │ │ │ │ ├── ossl_typ.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pqueue.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── srp.h │ │ │ │ │ ├── srtp.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl23.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── ts.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── ui_compat.h │ │ │ │ │ ├── whrlpool.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ └── x509v3.h │ │ │ └── lib │ │ │ │ ├── libcrypto.a │ │ │ │ └── libssl.a │ │ ├── libsodium-ios │ │ │ ├── include │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_int32.h │ │ │ │ │ ├── crypto_int64.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_aes128ctr.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_uint16.h │ │ │ │ │ ├── crypto_uint32.h │ │ │ │ │ ├── crypto_uint64.h │ │ │ │ │ ├── crypto_uint8.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_salsa20_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── version.h │ │ │ └── lib │ │ │ │ └── libsodium.a │ │ └── shadowsocks-libev │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── .uncrustify.cfg │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── Changes │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.md │ │ │ ├── acl │ │ │ ├── chn.acl │ │ │ └── local.acl │ │ │ ├── aclocal.m4 │ │ │ ├── auto │ │ │ ├── ar-lib │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── missing │ │ │ ├── autogen.sh │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── debian │ │ │ ├── .gitignore │ │ │ ├── README.Debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── config.json │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── copyright.original │ │ │ ├── libshadowsocks-libev-dev.install │ │ │ ├── libshadowsocks-libev1.install │ │ │ ├── rules │ │ │ ├── shadowsocks-libev-local@.service │ │ │ ├── shadowsocks-libev-redir@.service │ │ │ ├── shadowsocks-libev-server@.service │ │ │ ├── shadowsocks-libev-tunnel@.service │ │ │ ├── shadowsocks-libev.default │ │ │ ├── shadowsocks-libev.docs │ │ │ ├── shadowsocks-libev.init │ │ │ ├── shadowsocks-libev.install │ │ │ ├── shadowsocks-libev.postinst │ │ │ ├── shadowsocks-libev.postrm │ │ │ ├── shadowsocks-libev.service │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── asciidoc.conf │ │ │ ├── manpage-base.xsl │ │ │ ├── manpage-bold-literal.xsl │ │ │ ├── manpage-normal.xsl │ │ │ ├── shadowsocks-libev.asciidoc │ │ │ ├── ss-local.asciidoc │ │ │ ├── ss-manager.asciidoc │ │ │ ├── ss-nat.asciidoc │ │ │ ├── ss-redir.asciidoc │ │ │ ├── ss-server.asciidoc │ │ │ └── ss-tunnel.asciidoc │ │ │ ├── docker │ │ │ ├── alpine │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ └── docker-compose.yml │ │ │ └── ubuntu │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ └── entrypoint │ │ │ ├── libcork │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.markdown │ │ │ ├── cli │ │ │ │ └── commands.c │ │ │ ├── core │ │ │ │ ├── allocator.c │ │ │ │ ├── error.c │ │ │ │ ├── gc.c │ │ │ │ ├── hash.c │ │ │ │ ├── ip-address.c │ │ │ │ ├── mempool.c │ │ │ │ ├── timestamp.c │ │ │ │ └── u128.c │ │ │ ├── ds │ │ │ │ ├── array.c │ │ │ │ ├── bitset.c │ │ │ │ ├── buffer.c │ │ │ │ ├── dllist.c │ │ │ │ ├── file-stream.c │ │ │ │ ├── hash-table.c │ │ │ │ ├── managed-buffer.c │ │ │ │ ├── ring-buffer.c │ │ │ │ └── slice.c │ │ │ ├── include │ │ │ │ └── libcork │ │ │ │ │ ├── cli.h │ │ │ │ │ ├── cli │ │ │ │ │ └── commands.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config │ │ │ │ │ ├── arch.h │ │ │ │ │ ├── bsd.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── gcc.h │ │ │ │ │ ├── linux.h │ │ │ │ │ ├── macosx.h │ │ │ │ │ ├── mingw32.h │ │ │ │ │ └── solaris.h │ │ │ │ │ ├── core.h │ │ │ │ │ ├── core │ │ │ │ │ ├── allocator.h │ │ │ │ │ ├── api.h │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── byte-order.h │ │ │ │ │ ├── callbacks.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── gc.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── id.h │ │ │ │ │ ├── mempool.h │ │ │ │ │ ├── net-addresses.h │ │ │ │ │ ├── timestamp.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── u128.h │ │ │ │ │ ├── ds.h │ │ │ │ │ ├── ds │ │ │ │ │ ├── array.h │ │ │ │ │ ├── bitset.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── dllist.h │ │ │ │ │ ├── hash-table.h │ │ │ │ │ ├── managed-buffer.h │ │ │ │ │ ├── ring-buffer.h │ │ │ │ │ ├── slice.h │ │ │ │ │ └── stream.h │ │ │ │ │ ├── helpers │ │ │ │ │ ├── errors.h │ │ │ │ │ ├── gc.h │ │ │ │ │ └── posix.h │ │ │ │ │ ├── os.h │ │ │ │ │ ├── os │ │ │ │ │ ├── files.h │ │ │ │ │ ├── process.h │ │ │ │ │ └── subprocess.h │ │ │ │ │ ├── threads.h │ │ │ │ │ └── threads │ │ │ │ │ ├── atomics.h │ │ │ │ │ └── basics.h │ │ │ ├── posix │ │ │ │ ├── directory-walker.c │ │ │ │ ├── env.c │ │ │ │ ├── exec.c │ │ │ │ ├── files.c │ │ │ │ ├── process.c │ │ │ │ └── subprocess.c │ │ │ └── pthreads │ │ │ │ └── thread.c │ │ │ ├── libev │ │ │ ├── Changes │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── Symbols.ev │ │ │ ├── Symbols.event │ │ │ ├── aclocal.m4 │ │ │ ├── autogen.sh │ │ │ ├── configure.ac │ │ │ ├── ev++.h │ │ │ ├── ev.3 │ │ │ ├── ev.c │ │ │ ├── ev.h │ │ │ ├── ev.pod │ │ │ ├── ev_epoll.c │ │ │ ├── ev_kqueue.c │ │ │ ├── ev_poll.c │ │ │ ├── ev_port.c │ │ │ ├── ev_select.c │ │ │ ├── ev_vars.h │ │ │ ├── ev_win32.c │ │ │ ├── ev_wrap.h │ │ │ ├── event.c │ │ │ ├── event.h │ │ │ └── libev.m4 │ │ │ ├── libipset │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.markdown │ │ │ ├── bdd │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── assignments.c │ │ │ │ ├── basics.c │ │ │ │ ├── bdd-iterator.c │ │ │ │ ├── expanded.c │ │ │ │ ├── reachable.c │ │ │ │ ├── read.c │ │ │ │ └── write.c │ │ │ ├── general.c │ │ │ ├── include │ │ │ │ └── ipset │ │ │ │ │ ├── bdd │ │ │ │ │ └── nodes.h │ │ │ │ │ ├── bits.h │ │ │ │ │ ├── errors.h │ │ │ │ │ ├── ipset.h │ │ │ │ │ └── logging.h │ │ │ ├── map │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── allocation.c │ │ │ │ ├── inspection-template.c.in │ │ │ │ ├── inspection.c │ │ │ │ ├── ipv4_map.c │ │ │ │ ├── ipv6_map.c │ │ │ │ └── storage.c │ │ │ └── set │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── allocation.c │ │ │ │ ├── inspection-template.c.in │ │ │ │ ├── inspection.c │ │ │ │ ├── ipv4_set.c │ │ │ │ ├── ipv6_set.c │ │ │ │ ├── iterator.c │ │ │ │ └── storage.c │ │ │ ├── libsodium │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── ChangeLog │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── README.markdown │ │ │ ├── THANKS │ │ │ ├── autogen.sh │ │ │ ├── build-aux │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── depcomp │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ └── missing │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── libsodium.pc.in │ │ │ ├── libsodium.sln │ │ │ ├── libsodium.vcxproj │ │ │ ├── libsodium.vcxproj.filters │ │ │ ├── logo.png │ │ │ ├── m4 │ │ │ │ ├── ax_check_compile_flag.m4 │ │ │ │ ├── ax_check_define.m4 │ │ │ │ ├── ax_check_gnu_make.m4 │ │ │ │ ├── ax_check_link_flag.m4 │ │ │ │ ├── ld-output-def.m4 │ │ │ │ └── pkg.m4 │ │ │ ├── packaging │ │ │ │ └── nuget │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── package.bat │ │ │ │ │ ├── package.config │ │ │ │ │ └── package.gsl │ │ │ └── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── libsodium │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── crypto_aead │ │ │ │ ├── aes256gcm │ │ │ │ │ └── aesni │ │ │ │ │ │ └── aead_aes256gcm_aesni.c │ │ │ │ └── chacha20poly1305 │ │ │ │ │ └── sodium │ │ │ │ │ └── aead_chacha20poly1305.c │ │ │ │ ├── crypto_auth │ │ │ │ ├── crypto_auth.c │ │ │ │ ├── hmacsha256 │ │ │ │ │ ├── auth_hmacsha256_api.c │ │ │ │ │ └── cp │ │ │ │ │ │ ├── hmac_hmacsha256.c │ │ │ │ │ │ └── verify_hmacsha256.c │ │ │ │ ├── hmacsha512 │ │ │ │ │ ├── auth_hmacsha512_api.c │ │ │ │ │ └── cp │ │ │ │ │ │ ├── hmac_hmacsha512.c │ │ │ │ │ │ └── verify_hmacsha512.c │ │ │ │ └── hmacsha512256 │ │ │ │ │ ├── auth_hmacsha512256_api.c │ │ │ │ │ └── cp │ │ │ │ │ ├── hmac_hmacsha512256.c │ │ │ │ │ └── verify_hmacsha512256.c │ │ │ │ ├── crypto_box │ │ │ │ ├── crypto_box.c │ │ │ │ ├── crypto_box_easy.c │ │ │ │ ├── crypto_box_seal.c │ │ │ │ └── curve25519xsalsa20poly1305 │ │ │ │ │ ├── box_curve25519xsalsa20poly1305_api.c │ │ │ │ │ └── ref │ │ │ │ │ ├── after_curve25519xsalsa20poly1305.c │ │ │ │ │ ├── before_curve25519xsalsa20poly1305.c │ │ │ │ │ ├── box_curve25519xsalsa20poly1305.c │ │ │ │ │ └── keypair_curve25519xsalsa20poly1305.c │ │ │ │ ├── crypto_core │ │ │ │ ├── hsalsa20 │ │ │ │ │ ├── core_hsalsa20_api.c │ │ │ │ │ └── ref2 │ │ │ │ │ │ └── core_hsalsa20.c │ │ │ │ ├── salsa20 │ │ │ │ │ ├── core_salsa20_api.c │ │ │ │ │ └── ref │ │ │ │ │ │ └── core_salsa20.c │ │ │ │ ├── salsa2012 │ │ │ │ │ ├── core_salsa2012_api.c │ │ │ │ │ └── ref │ │ │ │ │ │ └── core_salsa2012.c │ │ │ │ └── salsa208 │ │ │ │ │ ├── core_salsa208_api.c │ │ │ │ │ └── ref │ │ │ │ │ └── core_salsa208.c │ │ │ │ ├── crypto_generichash │ │ │ │ ├── blake2 │ │ │ │ │ ├── generichash_blake2_api.c │ │ │ │ │ └── ref │ │ │ │ │ │ ├── blake2-impl.h │ │ │ │ │ │ ├── blake2.h │ │ │ │ │ │ ├── blake2b-compress-ref.c │ │ │ │ │ │ ├── blake2b-compress-sse41.c │ │ │ │ │ │ ├── blake2b-compress-ssse3.c │ │ │ │ │ │ ├── blake2b-load-sse2.h │ │ │ │ │ │ ├── blake2b-load-sse41.h │ │ │ │ │ │ ├── blake2b-ref.c │ │ │ │ │ │ ├── blake2b-round.h │ │ │ │ │ │ └── generichash_blake2b.c │ │ │ │ └── crypto_generichash.c │ │ │ │ ├── crypto_hash │ │ │ │ ├── crypto_hash.c │ │ │ │ ├── sha256 │ │ │ │ │ ├── cp │ │ │ │ │ │ └── hash_sha256.c │ │ │ │ │ └── hash_sha256_api.c │ │ │ │ └── sha512 │ │ │ │ │ ├── cp │ │ │ │ │ └── hash_sha512.c │ │ │ │ │ └── hash_sha512_api.c │ │ │ │ ├── crypto_onetimeauth │ │ │ │ ├── crypto_onetimeauth.c │ │ │ │ └── poly1305 │ │ │ │ │ ├── donna │ │ │ │ │ ├── poly1305_donna.c │ │ │ │ │ ├── poly1305_donna.h │ │ │ │ │ ├── poly1305_donna32.h │ │ │ │ │ └── poly1305_donna64.h │ │ │ │ │ ├── onetimeauth_poly1305.c │ │ │ │ │ ├── onetimeauth_poly1305.h │ │ │ │ │ └── sse2 │ │ │ │ │ ├── poly1305_sse2.c │ │ │ │ │ └── poly1305_sse2.h │ │ │ │ ├── crypto_pwhash │ │ │ │ └── scryptsalsa208sha256 │ │ │ │ │ ├── crypto_scrypt-common.c │ │ │ │ │ ├── crypto_scrypt.h │ │ │ │ │ ├── nosse │ │ │ │ │ └── pwhash_scryptsalsa208sha256_nosse.c │ │ │ │ │ ├── pbkdf2-sha256.c │ │ │ │ │ ├── pbkdf2-sha256.h │ │ │ │ │ ├── pwhash_scryptsalsa208sha256.c │ │ │ │ │ ├── scrypt_platform.c │ │ │ │ │ ├── sse │ │ │ │ │ └── pwhash_scryptsalsa208sha256_sse.c │ │ │ │ │ └── sysendian.h │ │ │ │ ├── crypto_scalarmult │ │ │ │ ├── crypto_scalarmult.c │ │ │ │ └── curve25519 │ │ │ │ │ ├── donna_c64 │ │ │ │ │ ├── curve25519_donna_c64.c │ │ │ │ │ └── curve25519_donna_c64.h │ │ │ │ │ ├── ref10 │ │ │ │ │ ├── curve25519_ref10.c │ │ │ │ │ ├── curve25519_ref10.h │ │ │ │ │ ├── fe.h │ │ │ │ │ ├── fe_0_curve25519_ref10.c │ │ │ │ │ ├── fe_1_curve25519_ref10.c │ │ │ │ │ ├── fe_add_curve25519_ref10.c │ │ │ │ │ ├── fe_copy_curve25519_ref10.c │ │ │ │ │ ├── fe_cswap_curve25519_ref10.c │ │ │ │ │ ├── fe_frombytes_curve25519_ref10.c │ │ │ │ │ ├── fe_invert_curve25519_ref10.c │ │ │ │ │ ├── fe_mul121666_curve25519_ref10.c │ │ │ │ │ ├── fe_mul_curve25519_ref10.c │ │ │ │ │ ├── fe_sq_curve25519_ref10.c │ │ │ │ │ ├── fe_sub_curve25519_ref10.c │ │ │ │ │ ├── fe_tobytes_curve25519_ref10.c │ │ │ │ │ ├── montgomery.h │ │ │ │ │ └── pow225521.h │ │ │ │ │ ├── sandy2x │ │ │ │ │ ├── consts.S │ │ │ │ │ ├── consts_namespace.h │ │ │ │ │ ├── curve25519_sandy2x.c │ │ │ │ │ ├── curve25519_sandy2x.h │ │ │ │ │ ├── fe.h │ │ │ │ │ ├── fe51.h │ │ │ │ │ ├── fe51_invert.c │ │ │ │ │ ├── fe51_mul.S │ │ │ │ │ ├── fe51_namespace.h │ │ │ │ │ ├── fe51_nsquare.S │ │ │ │ │ ├── fe51_pack.S │ │ │ │ │ ├── fe_frombytes_sandy2x.c │ │ │ │ │ ├── ladder.S │ │ │ │ │ ├── ladder.h │ │ │ │ │ ├── ladder_base.S │ │ │ │ │ ├── ladder_base.h │ │ │ │ │ ├── ladder_base_namespace.h │ │ │ │ │ ├── ladder_namespace.h │ │ │ │ │ └── sandy2x.S │ │ │ │ │ ├── scalarmult_curve25519.c │ │ │ │ │ └── scalarmult_curve25519.h │ │ │ │ ├── crypto_secretbox │ │ │ │ ├── crypto_secretbox.c │ │ │ │ ├── crypto_secretbox_easy.c │ │ │ │ └── xsalsa20poly1305 │ │ │ │ │ ├── ref │ │ │ │ │ └── box_xsalsa20poly1305.c │ │ │ │ │ └── secretbox_xsalsa20poly1305_api.c │ │ │ │ ├── crypto_shorthash │ │ │ │ ├── crypto_shorthash.c │ │ │ │ └── siphash24 │ │ │ │ │ ├── ref │ │ │ │ │ └── shorthash_siphash24.c │ │ │ │ │ └── shorthash_siphash24_api.c │ │ │ │ ├── crypto_sign │ │ │ │ ├── crypto_sign.c │ │ │ │ └── ed25519 │ │ │ │ │ ├── description │ │ │ │ │ ├── ref10 │ │ │ │ │ ├── base.h │ │ │ │ │ ├── base2.h │ │ │ │ │ ├── d.h │ │ │ │ │ ├── d2.h │ │ │ │ │ ├── fe.h │ │ │ │ │ ├── fe_0.c │ │ │ │ │ ├── fe_1.c │ │ │ │ │ ├── fe_add.c │ │ │ │ │ ├── fe_cmov.c │ │ │ │ │ ├── fe_copy.c │ │ │ │ │ ├── fe_frombytes.c │ │ │ │ │ ├── fe_invert.c │ │ │ │ │ ├── fe_isnegative.c │ │ │ │ │ ├── fe_isnonzero.c │ │ │ │ │ ├── fe_mul.c │ │ │ │ │ ├── fe_neg.c │ │ │ │ │ ├── fe_pow22523.c │ │ │ │ │ ├── fe_sq.c │ │ │ │ │ ├── fe_sq2.c │ │ │ │ │ ├── fe_sub.c │ │ │ │ │ ├── fe_tobytes.c │ │ │ │ │ ├── ge.h │ │ │ │ │ ├── ge_add.c │ │ │ │ │ ├── ge_add.h │ │ │ │ │ ├── ge_double_scalarmult.c │ │ │ │ │ ├── ge_frombytes.c │ │ │ │ │ ├── ge_madd.c │ │ │ │ │ ├── ge_madd.h │ │ │ │ │ ├── ge_msub.c │ │ │ │ │ ├── ge_msub.h │ │ │ │ │ ├── ge_p1p1_to_p2.c │ │ │ │ │ ├── ge_p1p1_to_p3.c │ │ │ │ │ ├── ge_p2_0.c │ │ │ │ │ ├── ge_p2_dbl.c │ │ │ │ │ ├── ge_p2_dbl.h │ │ │ │ │ ├── ge_p3_0.c │ │ │ │ │ ├── ge_p3_dbl.c │ │ │ │ │ ├── ge_p3_to_cached.c │ │ │ │ │ ├── ge_p3_to_p2.c │ │ │ │ │ ├── ge_p3_tobytes.c │ │ │ │ │ ├── ge_precomp_0.c │ │ │ │ │ ├── ge_scalarmult_base.c │ │ │ │ │ ├── ge_sub.c │ │ │ │ │ ├── ge_sub.h │ │ │ │ │ ├── ge_tobytes.c │ │ │ │ │ ├── keypair.c │ │ │ │ │ ├── obsolete.c │ │ │ │ │ ├── open.c │ │ │ │ │ ├── pow22523.h │ │ │ │ │ ├── pow225521.h │ │ │ │ │ ├── sc.h │ │ │ │ │ ├── sc_muladd.c │ │ │ │ │ ├── sc_reduce.c │ │ │ │ │ ├── sign.c │ │ │ │ │ └── sqrtm1.h │ │ │ │ │ └── sign_ed25519_api.c │ │ │ │ ├── crypto_stream │ │ │ │ ├── aes128ctr │ │ │ │ │ ├── portable │ │ │ │ │ │ ├── afternm_aes128ctr.c │ │ │ │ │ │ ├── beforenm_aes128ctr.c │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── common_aes128ctr.c │ │ │ │ │ │ ├── consts.h │ │ │ │ │ │ ├── consts_aes128ctr.c │ │ │ │ │ │ ├── int128.h │ │ │ │ │ │ ├── int128_aes128ctr.c │ │ │ │ │ │ ├── stream_aes128ctr.c │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ └── xor_afternm_aes128ctr.c │ │ │ │ │ └── stream_aes128ctr_api.c │ │ │ │ ├── chacha20 │ │ │ │ │ ├── ref │ │ │ │ │ │ ├── stream_chacha20_ref.c │ │ │ │ │ │ └── stream_chacha20_ref.h │ │ │ │ │ ├── stream_chacha20.c │ │ │ │ │ ├── stream_chacha20.h │ │ │ │ │ └── vec │ │ │ │ │ │ ├── stream_chacha20_vec.c │ │ │ │ │ │ └── stream_chacha20_vec.h │ │ │ │ ├── crypto_stream.c │ │ │ │ ├── salsa20 │ │ │ │ │ ├── amd64_xmm6 │ │ │ │ │ │ └── stream_salsa20_amd64_xmm6.S │ │ │ │ │ ├── ref │ │ │ │ │ │ ├── stream_salsa20_ref.c │ │ │ │ │ │ └── xor_salsa20_ref.c │ │ │ │ │ └── stream_salsa20_api.c │ │ │ │ ├── salsa2012 │ │ │ │ │ ├── ref │ │ │ │ │ │ ├── stream_salsa2012.c │ │ │ │ │ │ └── xor_salsa2012.c │ │ │ │ │ └── stream_salsa2012_api.c │ │ │ │ ├── salsa208 │ │ │ │ │ ├── ref │ │ │ │ │ │ ├── stream_salsa208.c │ │ │ │ │ │ └── xor_salsa208.c │ │ │ │ │ └── stream_salsa208_api.c │ │ │ │ └── xsalsa20 │ │ │ │ │ ├── ref │ │ │ │ │ ├── stream_xsalsa20.c │ │ │ │ │ └── xor_xsalsa20.c │ │ │ │ │ └── stream_xsalsa20_api.c │ │ │ │ ├── crypto_verify │ │ │ │ ├── 16 │ │ │ │ │ ├── ref │ │ │ │ │ │ └── verify_16.c │ │ │ │ │ └── verify_16_api.c │ │ │ │ ├── 32 │ │ │ │ │ ├── ref │ │ │ │ │ │ └── verify_32.c │ │ │ │ │ └── verify_32_api.c │ │ │ │ └── 64 │ │ │ │ │ ├── ref │ │ │ │ │ └── verify_64.c │ │ │ │ │ └── verify_64_api.c │ │ │ │ ├── include │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_int32.h │ │ │ │ │ ├── crypto_int64.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_aes128ctr.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_uint16.h │ │ │ │ │ ├── crypto_uint32.h │ │ │ │ │ ├── crypto_uint64.h │ │ │ │ │ ├── crypto_uint8.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_nativeclient.h │ │ │ │ │ ├── randombytes_salsa20_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── version.h.in │ │ │ │ ├── randombytes │ │ │ │ ├── nativeclient │ │ │ │ │ └── randombytes_nativeclient.c │ │ │ │ ├── randombytes.c │ │ │ │ ├── salsa20 │ │ │ │ │ └── randombytes_salsa20_random.c │ │ │ │ └── sysrandom │ │ │ │ │ └── randombytes_sysrandom.c │ │ │ │ └── sodium │ │ │ │ ├── core.c │ │ │ │ ├── runtime.c │ │ │ │ ├── utils.c │ │ │ │ └── version.c │ │ │ ├── libudns │ │ │ ├── COPYING.LGPL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── NOTES │ │ │ ├── TODO │ │ │ ├── dnsget.1 │ │ │ ├── dnsget.c │ │ │ ├── ex-rdns.c │ │ │ ├── getopt.c │ │ │ ├── inet_XtoX.c │ │ │ ├── rblcheck.1 │ │ │ ├── rblcheck.c │ │ │ ├── udns.3 │ │ │ ├── udns.h │ │ │ ├── udns_XtoX.c │ │ │ ├── udns_bl.c │ │ │ ├── udns_codes.c │ │ │ ├── udns_dn.c │ │ │ ├── udns_dntosp.c │ │ │ ├── udns_init.c │ │ │ ├── udns_jran.c │ │ │ ├── udns_misc.c │ │ │ ├── udns_parse.c │ │ │ ├── udns_resolver.c │ │ │ ├── udns_rr_a.c │ │ │ ├── udns_rr_mx.c │ │ │ ├── udns_rr_naptr.c │ │ │ ├── udns_rr_ptr.c │ │ │ ├── udns_rr_srv.c │ │ │ └── udns_rr_txt.c │ │ │ ├── m4 │ │ │ ├── ax_pthread.m4 │ │ │ ├── ax_tls.m4 │ │ │ ├── inet_ntop.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── mbedtls.m4 │ │ │ ├── openssl.m4 │ │ │ ├── polarssl.m4 │ │ │ ├── stack-protector.m4 │ │ │ └── zlib.m4 │ │ │ ├── openwrt │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── shadowsocks.init │ │ │ │ └── shadowsocks.json │ │ │ ├── rpm │ │ │ ├── SOURCES │ │ │ │ └── etc │ │ │ │ │ └── init.d │ │ │ │ │ └── shadowsocks-libev │ │ │ ├── SPECS │ │ │ │ └── shadowsocks-libev.spec │ │ │ └── genrpm.sh │ │ │ ├── shadowsocks-libev.pc.in │ │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── acl.c │ │ │ ├── acl.h │ │ │ ├── android.c │ │ │ ├── auth.c │ │ │ ├── auth.h │ │ │ ├── cache.c │ │ │ ├── cache.h │ │ │ ├── common.h │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── encrypt.c │ │ │ ├── encrypt.h │ │ │ ├── http_simple.c │ │ │ ├── http_simple.h │ │ │ ├── jconf.c │ │ │ ├── jconf.h │ │ │ ├── json.c │ │ │ ├── json.h │ │ │ ├── local.c │ │ │ ├── local.h │ │ │ ├── manager.c │ │ │ ├── manager.h │ │ │ ├── netutils.c │ │ │ ├── netutils.h │ │ │ ├── obfs.c │ │ │ ├── obfs.h │ │ │ ├── obfsutil.c │ │ │ ├── redir.c │ │ │ ├── redir.h │ │ │ ├── resolv.c │ │ │ ├── resolv.h │ │ │ ├── server.c │ │ │ ├── server.h │ │ │ ├── shadowsocks.h │ │ │ ├── socks5.h │ │ │ ├── ss-nat │ │ │ ├── ssrlink.py │ │ │ ├── tls1.0_session.c │ │ │ ├── tls1.0_session.h │ │ │ ├── tls1.2_ticket.c │ │ │ ├── tls1.2_ticket.h │ │ │ ├── tunnel.c │ │ │ ├── tunnel.h │ │ │ ├── udprelay.c │ │ │ ├── udprelay.h │ │ │ ├── uthash.h │ │ │ ├── utils.c │ │ │ ├── utils.h │ │ │ ├── verify.c │ │ │ ├── verify.h │ │ │ ├── win32.c │ │ │ └── win32.h │ └── ShadowPathDemo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Supporting Files │ │ └── main.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── config └── YAML-Framework │ ├── .gitignore │ ├── English.lproj │ └── InfoPlist.strings │ ├── Info.plist │ ├── Readme.md │ ├── YAML iOS-Info.plist │ ├── YAML-Framework.podspec │ ├── YAML.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── YAML iOS.xcscheme │ │ └── YAML.xcscheme │ ├── YAMLSerialization.h │ ├── YAMLSerialization.m │ ├── YAMLUnitTests │ ├── YAMLUnitTests-Info.plist │ ├── YAMLUnitTests-Prefix.pch │ ├── YAMLUnitTests.h │ ├── YAMLUnitTests.m │ └── en.lproj │ │ └── InfoPlist.strings │ ├── YAML_Prefix.pch │ ├── module.modulemap │ ├── test │ ├── bigboy.rb │ ├── events.c │ ├── fetch.rb │ ├── spec12examples.m │ ├── test.m │ └── yaml │ │ ├── basic.yaml │ │ ├── items.yaml │ │ ├── map-in-seq.yaml │ │ ├── map.yaml │ │ ├── mapping.yaml │ │ ├── simple.yaml │ │ ├── spec12-example-10-1-map-examples.yaml │ │ ├── spec12-example-10-2-seq-examples.yaml │ │ ├── spec12-example-10-3-str-examples.yaml │ │ ├── spec12-example-10-4-null-examples.yaml │ │ ├── spec12-example-10-5-bool-examples.yaml │ │ ├── spec12-example-10-6-int-examples.yaml │ │ ├── spec12-example-10-7-float-examples.yaml │ │ ├── spec12-example-10-8-json-tag-resolution.yaml │ │ ├── spec12-example-10-9-core-tag-resolution.yaml │ │ ├── spec12-example-2-1-sequence-of-scalars-ball-players.yaml │ │ ├── spec12-example-2-10-node-for-sammy-sosa-appears-twice-in-this-document.yaml │ │ ├── spec12-example-2-11-mapping-between-sequences.yaml │ │ ├── spec12-example-2-12-compact-nested-mapping.yaml │ │ ├── spec12-example-2-13-in-literals-newlines-are-preserved.yaml │ │ ├── spec12-example-2-14-in-the-folded-scalars-newlines-become-spaces.yaml │ │ ├── spec12-example-2-15-folded-newlines-are-preserved-for-more-indented-and-blank-lines.yaml │ │ ├── spec12-example-2-16-indentation-determines-scope.yaml │ │ ├── spec12-example-2-17-quoted-scalars.yaml │ │ ├── spec12-example-2-18-multi-line-flow-scalars.yaml │ │ ├── spec12-example-2-19-integers.yaml │ │ ├── spec12-example-2-2-mapping-scalars-to-scalars-player-statistics.yaml │ │ ├── spec12-example-2-20-floating-point.yaml │ │ ├── spec12-example-2-21-miscellaneous.yaml │ │ ├── spec12-example-2-22-timestamps.yaml │ │ ├── spec12-example-2-23-various-explicit-tags.yaml │ │ ├── spec12-example-2-24-global-tags.yaml │ │ ├── spec12-example-2-25-unordered-sets.yaml │ │ ├── spec12-example-2-26-ordered-mappings.yaml │ │ ├── spec12-example-2-27-invoice.yaml │ │ ├── spec12-example-2-28-log-file.yaml │ │ ├── spec12-example-2-3-mapping-scalars-to-sequences-ball-clubs-in-each-league.yaml │ │ ├── spec12-example-2-4-sequence-of-mappings-players-statistics.yaml │ │ ├── spec12-example-2-5-sequence-of-sequences.yaml │ │ ├── spec12-example-2-6-mapping-of-mappings.yaml │ │ ├── spec12-example-2-7-two-documents-in-a-stream-each-with-a-leading-comment.yaml │ │ ├── spec12-example-2-8-play-by-play-feed-from-a-game.yaml │ │ ├── spec12-example-2-9-single-document-with-two-comments.yaml │ │ ├── spec12-example-5-1-byte-order-mark.yaml │ │ ├── spec12-example-5-10-invalid-use-of-reserved-indicators.yaml │ │ ├── spec12-example-5-11-line-break-characters.yaml │ │ ├── spec12-example-5-12-tabs-and-spaces.yaml │ │ ├── spec12-example-5-13-escaped-characters.yaml │ │ ├── spec12-example-5-14-invalid-escaped-characters.yaml │ │ ├── spec12-example-5-2-invalid-byte-order-mark.yaml │ │ ├── spec12-example-5-3-block-structure-indicators.yaml │ │ ├── spec12-example-5-4-flow-collection-indicators.yaml │ │ ├── spec12-example-5-5-comment-indicator.yaml │ │ ├── spec12-example-5-6-node-property-indicators.yaml │ │ ├── spec12-example-5-7-block-scalar-indicators.yaml │ │ ├── spec12-example-5-8-quoted-scalar-indicators.yaml │ │ ├── spec12-example-5-9-directive-indicator.yaml │ │ ├── spec12-example-6-1-indentation-spaces.yaml │ │ ├── spec12-example-6-10-comment-lines.yaml │ │ ├── spec12-example-6-11-multi-line-comments.yaml │ │ ├── spec12-example-6-12-separation-spaces.yaml │ │ ├── spec12-example-6-13-reserved-directives.yaml │ │ ├── spec12-example-6-14-yaml-directive.yaml │ │ ├── spec12-example-6-15-invalid-repeated-yaml-directive.yaml │ │ ├── spec12-example-6-16-tag-directive.yaml │ │ ├── spec12-example-6-17-invalid-repeated-tag-directive.yaml │ │ ├── spec12-example-6-18-primary-tag-handle.yaml │ │ ├── spec12-example-6-19-secondary-tag-handle.yaml │ │ ├── spec12-example-6-2-indentation-indicators.yaml │ │ ├── spec12-example-6-20-tag-handles.yaml │ │ ├── spec12-example-6-21-local-tag-prefix.yaml │ │ ├── spec12-example-6-22-global-tag-prefix.yaml │ │ ├── spec12-example-6-23-node-properties.yaml │ │ ├── spec12-example-6-24-verbatim-tags.yaml │ │ ├── spec12-example-6-25-invalid-verbatim-tags.yaml │ │ ├── spec12-example-6-26-tag-shorthands.yaml │ │ ├── spec12-example-6-27-invalid-tag-shorthands.yaml │ │ ├── spec12-example-6-28-non-specific-tags.yaml │ │ ├── spec12-example-6-29-node-anchors.yaml │ │ ├── spec12-example-6-3-separation-spaces.yaml │ │ ├── spec12-example-6-4-line-prefixes.yaml │ │ ├── spec12-example-6-5-empty-lines.yaml │ │ ├── spec12-example-6-6-line-folding.yaml │ │ ├── spec12-example-6-7-block-folding.yaml │ │ ├── spec12-example-6-8-flow-folding.yaml │ │ ├── spec12-example-6-9-separated-comment.yaml │ │ ├── spec12-example-7-1-alias-nodes.yaml │ │ ├── spec12-example-7-10-plain-characters.yaml │ │ ├── spec12-example-7-11-plain-implicit-keys.yaml │ │ ├── spec12-example-7-12-plain-lines.yaml │ │ ├── spec12-example-7-13-flow-sequence.yaml │ │ ├── spec12-example-7-14-flow-sequence-entries.yaml │ │ ├── spec12-example-7-15-flow-mappings.yaml │ │ ├── spec12-example-7-16-flow-mapping-entries.yaml │ │ ├── spec12-example-7-17-flow-mapping-separate-values.yaml │ │ ├── spec12-example-7-18-flow-mapping-adjacent-values.yaml │ │ ├── spec12-example-7-19-single-pair-flow-mappings.yaml │ │ ├── spec12-example-7-2-empty-content.yaml │ │ ├── spec12-example-7-20-single-pair-explicit-entry.yaml │ │ ├── spec12-example-7-21-single-pair-implicit-entries.yaml │ │ ├── spec12-example-7-22-invalid-implicit-keys.yaml │ │ ├── spec12-example-7-23-flow-content.yaml │ │ ├── spec12-example-7-24-flow-nodes.yaml │ │ ├── spec12-example-7-3-completely-empty-flow-nodes.yaml │ │ ├── spec12-example-7-4-double-quoted-implicit-keys.yaml │ │ ├── spec12-example-7-5-double-quoted-line-breaks.yaml │ │ ├── spec12-example-7-6-double-quoted-lines.yaml │ │ ├── spec12-example-7-7-single-quoted-characters.yaml │ │ ├── spec12-example-7-8-single-quoted-implicit-keys.yaml │ │ ├── spec12-example-7-9-single-quoted-lines.yaml │ │ ├── spec12-example-8-1-block-scalar-header.yaml │ │ ├── spec12-example-8-10-folded-lines.yaml │ │ ├── spec12-example-8-11-more-indented-lines.yaml │ │ ├── spec12-example-8-12-empty-separation-lines.yaml │ │ ├── spec12-example-8-13-final-empty-lines.yaml │ │ ├── spec12-example-8-14-block-sequence.yaml │ │ ├── spec12-example-8-15-block-sequence-entry-types.yaml │ │ ├── spec12-example-8-16-block-mappings.yaml │ │ ├── spec12-example-8-17-explicit-block-mapping-entries.yaml │ │ ├── spec12-example-8-18-implicit-block-mapping-entries.yaml │ │ ├── spec12-example-8-19-compact-block-mappings.yaml │ │ ├── spec12-example-8-2-block-indentation-indicator.yaml │ │ ├── spec12-example-8-20-block-node-types.yaml │ │ ├── spec12-example-8-21-block-scalar-nodes.yaml │ │ ├── spec12-example-8-22-block-collection-nodes.yaml │ │ ├── spec12-example-8-3-invalid-block-scalar-indentation-indicators.yaml │ │ ├── spec12-example-8-4-chomping-final-line-break.yaml │ │ ├── spec12-example-8-5-chomping-trailing-lines.yaml │ │ ├── spec12-example-8-6-empty-scalar-chomping.yaml │ │ ├── spec12-example-8-7-literal-scalar.yaml │ │ ├── spec12-example-8-8-literal-content.yaml │ │ ├── spec12-example-8-9-folded-scalar.yaml │ │ ├── spec12-example-9-1-document-prefix.yaml │ │ ├── spec12-example-9-2-document-markers.yaml │ │ ├── spec12-example-9-3-bare-documents.yaml │ │ ├── spec12-example-9-4-explicit-documents.yaml │ │ ├── spec12-example-9-5-directives-documents.yaml │ │ ├── spec12-example-9-6-stream.yaml │ │ └── strange-keys.yaml │ └── yaml-0.1.4 │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── config.h │ ├── config.h.in │ ├── config │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ └── missing │ ├── configure │ ├── configure.ac │ ├── doc │ ├── doxygen.cfg │ └── html │ │ ├── annotated.html │ │ ├── bc_s.png │ │ ├── classes.html │ │ ├── closed.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── files.html │ │ ├── functions.html │ │ ├── functions_0x62.html │ │ ├── functions_0x63.html │ │ ├── functions_0x64.html │ │ ├── functions_0x65.html │ │ ├── functions_0x66.html │ │ ├── functions_0x68.html │ │ ├── functions_0x69.html │ │ ├── functions_0x6b.html │ │ ├── functions_0x6c.html │ │ ├── functions_0x6d.html │ │ ├── functions_0x6e.html │ │ ├── functions_0x6f.html │ │ ├── functions_0x70.html │ │ ├── functions_0x71.html │ │ ├── functions_0x72.html │ │ ├── functions_0x73.html │ │ ├── functions_0x74.html │ │ ├── functions_0x75.html │ │ ├── functions_0x76.html │ │ ├── functions_0x77.html │ │ ├── functions_vars.html │ │ ├── functions_vars_0x62.html │ │ ├── functions_vars_0x63.html │ │ ├── functions_vars_0x64.html │ │ ├── functions_vars_0x65.html │ │ ├── functions_vars_0x66.html │ │ ├── functions_vars_0x68.html │ │ ├── functions_vars_0x69.html │ │ ├── functions_vars_0x6b.html │ │ ├── functions_vars_0x6c.html │ │ ├── functions_vars_0x6d.html │ │ ├── functions_vars_0x6e.html │ │ ├── functions_vars_0x6f.html │ │ ├── functions_vars_0x70.html │ │ ├── functions_vars_0x71.html │ │ ├── functions_vars_0x72.html │ │ ├── functions_vars_0x73.html │ │ ├── functions_vars_0x74.html │ │ ├── functions_vars_0x75.html │ │ ├── functions_vars_0x76.html │ │ ├── functions_vars_0x77.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── group__basic.html │ │ ├── group__emitter.html │ │ ├── group__events.html │ │ ├── group__export.html │ │ ├── group__nodes.html │ │ ├── group__parser.html │ │ ├── group__styles.html │ │ ├── group__tokens.html │ │ ├── group__version.html │ │ ├── index.html │ │ ├── modules.html │ │ ├── nav_f.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── structyaml__alias__data__s.html │ │ ├── structyaml__document__s.html │ │ ├── structyaml__emitter__s.html │ │ ├── structyaml__event__s.html │ │ ├── structyaml__mark__s.html │ │ ├── structyaml__node__pair__s.html │ │ ├── structyaml__node__s.html │ │ ├── structyaml__parser__s.html │ │ ├── structyaml__simple__key__s.html │ │ ├── structyaml__tag__directive__s.html │ │ ├── structyaml__token__s.html │ │ ├── structyaml__version__directive__s.html │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tabs.css │ │ └── yaml_8h.html │ ├── include │ ├── Makefile.am │ ├── Makefile.in │ └── yaml.h │ ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── api.c │ ├── dumper.c │ ├── emitter.c │ ├── loader.c │ ├── parser.c │ ├── reader.c │ ├── scanner.c │ ├── writer.c │ └── yaml_private.h │ ├── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── example-deconstructor-alt.c │ ├── example-deconstructor.c │ ├── example-reformatter-alt.c │ ├── example-reformatter.c │ ├── run-dumper.c │ ├── run-emitter.c │ ├── run-loader.c │ ├── run-parser.c │ ├── run-scanner.c │ ├── test-reader.c │ └── test-version.c │ ├── win32 │ ├── Makefile.am │ ├── Makefile.in │ ├── config.h │ ├── vc6 │ │ ├── example_deconstructor.dsp │ │ ├── example_deconstructor_alt.dsp │ │ ├── example_reformatter.dsp │ │ ├── example_reformatter_alt.dsp │ │ ├── libyaml.dsw │ │ ├── run_dumper.dsp │ │ ├── run_emitter.dsp │ │ ├── run_loader.dsp │ │ ├── run_parser.dsp │ │ ├── run_scanner.dsp │ │ ├── test_reader.dsp │ │ ├── test_version.dsp │ │ ├── yaml.dsp │ │ └── yamldll.dsp │ ├── vs2003 │ │ ├── example_deconstructor.vcproj │ │ ├── example_deconstructor_alt.vcproj │ │ ├── example_reformatter.vcproj │ │ ├── example_reformatter_alt.vcproj │ │ ├── libyaml.sln │ │ ├── run_dumper.vcproj │ │ ├── run_emitter.vcproj │ │ ├── run_loader.vcproj │ │ ├── run_parser.vcproj │ │ ├── run_scanner.vcproj │ │ ├── test_reader.vcproj │ │ ├── test_version.vcproj │ │ ├── yaml.vcproj │ │ └── yamldll.vcproj │ └── vs2008 │ │ ├── example_deconstructor.vcproj │ │ ├── example_deconstructor_alt.vcproj │ │ ├── example_reformatter.vcproj │ │ ├── example_reformatter_alt.vcproj │ │ ├── libyaml.sln │ │ ├── run_dumper.vcproj │ │ ├── run_emitter.vcproj │ │ ├── run_loader.vcproj │ │ ├── run_parser.vcproj │ │ ├── run_scanner.vcproj │ │ ├── test_reader.vcproj │ │ ├── test_version.vcproj │ │ ├── yaml.vcproj │ │ └── yamldll.vcproj │ └── yaml-0.1.pc.in ├── PacketProcessor ├── Info.plist ├── PacketProcessor.h ├── TunnelInterface.h ├── TunnelInterface.m └── tun2socks-iOS │ ├── base │ ├── BLog.h │ ├── BLog.m │ ├── BLog_syslog.c │ ├── BLog_syslog.h │ ├── BMutex.h │ ├── BPending.c │ ├── BPending.h │ ├── BPending_list.h │ ├── DebugObject.c │ └── DebugObject.h │ ├── flow │ ├── BufferWriter.c │ ├── BufferWriter.h │ ├── PacketBuffer.c │ ├── PacketBuffer.h │ ├── PacketPassConnector.c │ ├── PacketPassConnector.h │ ├── PacketPassFairQueue.c │ ├── PacketPassFairQueue.h │ ├── PacketPassFairQueue_tree.h │ ├── PacketPassInterface.c │ ├── PacketPassInterface.h │ ├── PacketProtoDecoder.c │ ├── PacketProtoDecoder.h │ ├── PacketProtoEncoder.c │ ├── PacketProtoEncoder.h │ ├── PacketProtoFlow.c │ ├── PacketProtoFlow.h │ ├── PacketRecvInterface.c │ ├── PacketRecvInterface.h │ ├── PacketStreamSender.c │ ├── PacketStreamSender.h │ ├── SinglePacketBuffer.c │ ├── SinglePacketBuffer.h │ ├── StreamPassInterface.c │ ├── StreamPassInterface.h │ ├── StreamRecvInterface.c │ └── StreamRecvInterface.h │ ├── flowextra │ ├── PacketPassInactivityMonitor.c │ └── PacketPassInactivityMonitor.h │ ├── generated │ ├── blog_channel_BArpProbe.h │ ├── blog_channel_BConnection.h │ ├── blog_channel_BDHCPClient.h │ ├── blog_channel_BDHCPClientCore.h │ ├── blog_channel_BDatagram.h │ ├── blog_channel_BEncryption.h │ ├── blog_channel_BInputProcess.h │ ├── blog_channel_BLockReactor.h │ ├── blog_channel_BNetwork.h │ ├── blog_channel_BPredicate.h │ ├── blog_channel_BProcess.h │ ├── blog_channel_BReactor.h │ ├── blog_channel_BSSLConnection.h │ ├── blog_channel_BSignal.h │ ├── blog_channel_BSocksClient.h │ ├── blog_channel_BTap.h │ ├── blog_channel_BThreadSignal.h │ ├── blog_channel_BThreadWork.h │ ├── blog_channel_BTime.h │ ├── blog_channel_BUnixSignal.h │ ├── blog_channel_DPReceive.h │ ├── blog_channel_DPRelay.h │ ├── blog_channel_DataProto.h │ ├── blog_channel_DatagramPeerIO.h │ ├── blog_channel_FragmentProtoAssembler.h │ ├── blog_channel_FrameDecider.h │ ├── blog_channel_LineBuffer.h │ ├── blog_channel_Listener.h │ ├── blog_channel_NCDBuildProgram.h │ ├── blog_channel_NCDConfigParser.h │ ├── blog_channel_NCDConfigTokenizer.h │ ├── blog_channel_NCDIfConfig.h │ ├── blog_channel_NCDInterfaceMonitor.h │ ├── blog_channel_NCDModuleIndex.h │ ├── blog_channel_NCDModuleProcess.h │ ├── blog_channel_NCDPlaceholderDb.h │ ├── blog_channel_NCDRequest.h │ ├── blog_channel_NCDRequestClient.h │ ├── blog_channel_NCDRfkillMonitor.h │ ├── blog_channel_NCDUdevCache.h │ ├── blog_channel_NCDUdevManager.h │ ├── blog_channel_NCDUdevMonitor.h │ ├── blog_channel_NCDUdevMonitorParser.h │ ├── blog_channel_NCDVal.h │ ├── blog_channel_NCDValGenerator.h │ ├── blog_channel_NCDValParser.h │ ├── blog_channel_PRStreamSink.h │ ├── blog_channel_PRStreamSource.h │ ├── blog_channel_PacketProtoDecoder.h │ ├── blog_channel_PasswordListener.h │ ├── blog_channel_PeerChat.h │ ├── blog_channel_SPProtoDecoder.h │ ├── blog_channel_ServerConnection.h │ ├── blog_channel_SocksUdpGwClient.h │ ├── blog_channel_StreamPeerIO.h │ ├── blog_channel_UdpGwClient.h │ ├── blog_channel_addr.h │ ├── blog_channel_client.h │ ├── blog_channel_dostest_attacker.h │ ├── blog_channel_dostest_server.h │ ├── blog_channel_flooder.h │ ├── blog_channel_lwip.h │ ├── blog_channel_ncd.h │ ├── blog_channel_ncd_alias.h │ ├── blog_channel_ncd_arithmetic.h │ ├── blog_channel_ncd_assert.h │ ├── blog_channel_ncd_backtrack.h │ ├── blog_channel_ncd_basic_functions.h │ ├── blog_channel_ncd_blocker.h │ ├── blog_channel_ncd_buffer.h │ ├── blog_channel_ncd_call2.h │ ├── blog_channel_ncd_choose.h │ ├── blog_channel_ncd_concat.h │ ├── blog_channel_ncd_daemon.h │ ├── blog_channel_ncd_depend.h │ ├── blog_channel_ncd_depend_scope.h │ ├── blog_channel_ncd_dynamic_depend.h │ ├── blog_channel_ncd_exit.h │ ├── blog_channel_ncd_explode.h │ ├── blog_channel_ncd_file.h │ ├── blog_channel_ncd_file_open.h │ ├── blog_channel_ncd_foreach.h │ ├── blog_channel_ncd_from_string.h │ ├── blog_channel_ncd_getargs.h │ ├── blog_channel_ncd_getenv.h │ ├── blog_channel_ncd_if.h │ ├── blog_channel_ncd_imperative.h │ ├── blog_channel_ncd_implode.h │ ├── blog_channel_ncd_index.h │ ├── blog_channel_ncd_list.h │ ├── blog_channel_ncd_load_module.h │ ├── blog_channel_ncd_log.h │ ├── blog_channel_ncd_log_msg.h │ ├── blog_channel_ncd_logical.h │ ├── blog_channel_ncd_multidepend.h │ ├── blog_channel_ncd_net_backend_badvpn.h │ ├── blog_channel_ncd_net_backend_rfkill.h │ ├── blog_channel_ncd_net_backend_waitdevice.h │ ├── blog_channel_ncd_net_backend_waitlink.h │ ├── blog_channel_ncd_net_backend_wpa_supplicant.h │ ├── blog_channel_ncd_net_dns.h │ ├── blog_channel_ncd_net_iptables.h │ ├── blog_channel_ncd_net_ipv4_addr.h │ ├── blog_channel_ncd_net_ipv4_addr_in_network.h │ ├── blog_channel_ncd_net_ipv4_arp_probe.h │ ├── blog_channel_ncd_net_ipv4_dhcp.h │ ├── blog_channel_ncd_net_ipv4_route.h │ ├── blog_channel_ncd_net_ipv6_addr.h │ ├── blog_channel_ncd_net_ipv6_addr_in_network.h │ ├── blog_channel_ncd_net_ipv6_route.h │ ├── blog_channel_ncd_net_ipv6_wait_dynamic_addr.h │ ├── blog_channel_ncd_net_up.h │ ├── blog_channel_ncd_net_watch_interfaces.h │ ├── blog_channel_ncd_netmask.h │ ├── blog_channel_ncd_objref.h │ ├── blog_channel_ncd_ondemand.h │ ├── blog_channel_ncd_parse.h │ ├── blog_channel_ncd_print.h │ ├── blog_channel_ncd_process_manager.h │ ├── blog_channel_ncd_reboot.h │ ├── blog_channel_ncd_ref.h │ ├── blog_channel_ncd_regex_match.h │ ├── blog_channel_ncd_request.h │ ├── blog_channel_ncd_run.h │ ├── blog_channel_ncd_runonce.h │ ├── blog_channel_ncd_sleep.h │ ├── blog_channel_ncd_socket.h │ ├── blog_channel_ncd_spawn.h │ ├── blog_channel_ncd_strcmp.h │ ├── blog_channel_ncd_substr.h │ ├── blog_channel_ncd_sys_evdev.h │ ├── blog_channel_ncd_sys_request_client.h │ ├── blog_channel_ncd_sys_request_server.h │ ├── blog_channel_ncd_sys_start_process.h │ ├── blog_channel_ncd_sys_watch_directory.h │ ├── blog_channel_ncd_sys_watch_input.h │ ├── blog_channel_ncd_sys_watch_usb.h │ ├── blog_channel_ncd_timer.h │ ├── blog_channel_ncd_to_string.h │ ├── blog_channel_ncd_try.h │ ├── blog_channel_ncd_value.h │ ├── blog_channel_ncd_valuemetic.h │ ├── blog_channel_ncd_var.h │ ├── blog_channel_nsskey.h │ ├── blog_channel_server.h │ ├── blog_channel_tun2socks.h │ ├── blog_channel_udpgw.h │ ├── blog_channels_defines.h │ ├── blog_channels_list.h │ ├── bproto_addr.h │ ├── bproto_bproto_test.h │ └── bproto_msgproto.h │ ├── lwip │ ├── custom │ │ ├── arch │ │ │ ├── cc.h │ │ │ └── perf.h │ │ ├── lwipopts.h │ │ └── sys.c │ └── src │ │ ├── core │ │ ├── def.c │ │ ├── inet_chksum.c │ │ ├── init.c │ │ ├── ipv4 │ │ │ ├── icmp.c │ │ │ ├── ip4.c │ │ │ ├── ip4_addr.c │ │ │ └── ip_frag.c │ │ ├── ipv6 │ │ │ ├── icmp6.c │ │ │ ├── ip6.c │ │ │ ├── ip6_addr.c │ │ │ ├── ip6_frag.c │ │ │ └── nd6.c │ │ ├── mem.c │ │ ├── memp.c │ │ ├── netif.c │ │ ├── pbuf.c │ │ ├── stats.c │ │ ├── tcp.c │ │ ├── tcp_in.c │ │ ├── tcp_out.c │ │ ├── timers.c │ │ └── udp.c │ │ └── include │ │ ├── ipv4 │ │ └── lwip │ │ │ ├── autoip.h │ │ │ ├── icmp.h │ │ │ ├── igmp.h │ │ │ ├── inet.h │ │ │ ├── ip4.h │ │ │ ├── ip4_addr.h │ │ │ └── ip_frag.h │ │ ├── ipv6 │ │ └── lwip │ │ │ ├── dhcp6.h │ │ │ ├── ethip6.h │ │ │ ├── icmp6.h │ │ │ ├── inet6.h │ │ │ ├── ip6.h │ │ │ ├── ip6_addr.h │ │ │ ├── ip6_frag.h │ │ │ ├── mld6.h │ │ │ └── nd6.h │ │ ├── lwip │ │ ├── api.h │ │ ├── api_msg.h │ │ ├── arch.h │ │ ├── debug.h │ │ ├── def.h │ │ ├── dhcp.h │ │ ├── dns.h │ │ ├── err.h │ │ ├── inet_chksum.h │ │ ├── init.h │ │ ├── ip.h │ │ ├── ip_addr.h │ │ ├── mem.h │ │ ├── memp.h │ │ ├── memp_std.h │ │ ├── netbuf.h │ │ ├── netdb.h │ │ ├── netif.h │ │ ├── netifapi.h │ │ ├── opt.h │ │ ├── pbuf.h │ │ ├── raw.h │ │ ├── sio.h │ │ ├── snmp.h │ │ ├── snmp_asn1.h │ │ ├── snmp_msg.h │ │ ├── snmp_structs.h │ │ ├── sockets.h │ │ ├── stats.h │ │ ├── sys.h │ │ ├── tcp.h │ │ ├── tcp_impl.h │ │ ├── tcpip.h │ │ ├── timers.h │ │ └── udp.h │ │ ├── netif │ │ ├── etharp.h │ │ ├── ppp_oe.h │ │ └── slipif.h │ │ └── posix │ │ ├── netdb.h │ │ └── sys │ │ └── socket.h │ ├── misc │ ├── BRefTarget.h │ ├── Utf16Decoder.h │ ├── Utf16Encoder.h │ ├── Utf8Decoder.h │ ├── Utf8Encoder.h │ ├── arp_proto.h │ ├── array_length.h │ ├── ascii_utils.h │ ├── balign.h │ ├── balloc.h │ ├── blimits.h │ ├── bsize.h │ ├── bsort.h │ ├── bstring.h │ ├── byteorder.h │ ├── cmdline.h │ ├── compare.h │ ├── concat_strings.h │ ├── dead.h │ ├── debug.h │ ├── debugcounter.h │ ├── debugerror.h │ ├── dhcp_proto.h │ ├── ethernet_proto.h │ ├── exparray.h │ ├── expstring.h │ ├── find_char.h │ ├── find_program.h │ ├── get_iface_info.h │ ├── grow_array.h │ ├── hashfun.h │ ├── igmp_proto.h │ ├── ipaddr.h │ ├── ipaddr6.h │ ├── ipv4_proto.h │ ├── ipv6_proto.h │ ├── loggers_string.h │ ├── loglevel.h │ ├── maxalign.h │ ├── memref.h │ ├── merge.h │ ├── minmax.h │ ├── modadd.h │ ├── mswsock.h │ ├── nonblocking.h │ ├── nsskey.h │ ├── offset.h │ ├── open_standard_streams.h │ ├── overflow.h │ ├── packed.h │ ├── parse_number.h │ ├── print_macros.h │ ├── read_file.h │ ├── read_write_int.h │ ├── socks_proto.h │ ├── sslsocket.h │ ├── stdbuf_cmdline.h │ ├── strdup.h │ ├── string_begins_with.h │ ├── substring.h │ ├── udp_proto.h │ ├── unicode_funcs.h │ ├── version.h │ └── write_file.h │ ├── protocol │ ├── addr.bproto │ ├── addr.h │ ├── dataproto.h │ ├── fragmentproto.h │ ├── msgproto.bproto │ ├── msgproto.h │ ├── packetproto.h │ ├── requestproto.h │ ├── scproto.h │ ├── spproto.h │ └── udpgw_proto.h │ ├── socksclient │ ├── BSocksClient.c │ └── BSocksClient.h │ ├── structure │ ├── BAVL.h │ ├── CAvl.h │ ├── CAvl_decl.h │ ├── CAvl_footer.h │ ├── CAvl_header.h │ ├── CAvl_impl.h │ ├── CHash.h │ ├── CHash_decl.h │ ├── CHash_footer.h │ ├── CHash_header.h │ ├── CHash_impl.h │ ├── ChunkBuffer2.h │ ├── IndexedList.h │ ├── IndexedList_tree.h │ ├── LinkedList0.h │ ├── LinkedList1.h │ ├── LinkedList3.h │ ├── SAvl.h │ ├── SAvl_decl.h │ ├── SAvl_footer.h │ ├── SAvl_header.h │ ├── SAvl_impl.h │ ├── SAvl_tree.h │ ├── SLinkedList.h │ ├── SLinkedList_decl.h │ ├── SLinkedList_footer.h │ ├── SLinkedList_header.h │ ├── SLinkedList_impl.h │ ├── Vector.h │ ├── Vector_decl.h │ ├── Vector_footer.h │ ├── Vector_header.h │ └── Vector_impl.h │ ├── system │ ├── BAddr.h │ ├── BConnection.h │ ├── BConnection_common.c │ ├── BConnection_unix.c │ ├── BConnection_unix.h │ ├── BDatagram.h │ ├── BDatagram_unix.c │ ├── BDatagram_unix.h │ ├── BNetwork.c │ ├── BNetwork.h │ ├── BReactor.h │ ├── BReactor_badvpn.c │ ├── BReactor_badvpn.h │ ├── BReactor_badvpn_timerstree.h │ ├── BSignal.c │ ├── BSignal.h │ ├── BTime.c │ ├── BTime.h │ ├── BUnixSignal.c │ └── BUnixSignal.h │ ├── tun2socks │ ├── SocksUdpGwClient.c │ ├── SocksUdpGwClient.h │ ├── tun2socks.c │ └── tun2socks.h │ ├── tuntap │ ├── BTap.h │ └── BTap.m │ ├── udpgw │ ├── udpgw.c │ └── udpgw.h │ └── udpgw_client │ ├── UdpGwClient.c │ └── UdpGwClient.h ├── PacketTunnel ├── Info.plist ├── PacketTunnel.entitlements ├── PacketTunnelProvider.h ├── PacketTunnelProvider.m ├── ProxyManager.h ├── ProxyManager.m ├── TunnelError.h ├── TunnelError.m ├── dns.h └── dns.m ├── Podfile ├── Podfile.lock ├── Potatso.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Potatso.xcscheme ├── Potatso.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Potatso ├── Advance │ ├── ProxyConfigurationViewController.swift │ ├── ProxySelectionViewController.swift │ ├── RuleConfigurationViewController.swift │ ├── RuleSetConfigurationViewController.swift │ └── RuleSetsSelectionViewController.swift ├── AppDelegate.swift ├── AppInitializer.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-83.5@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x-1.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── Icon-Spotlight-40.png │ │ ├── Icon-Spotlight-40@2x-1.png │ │ ├── Icon-Spotlight-40@2x.png │ │ └── Icon-Spotlight-40@3x.png │ ├── Back.imageset │ │ ├── Back@2x.png │ │ ├── Back@3x.png │ │ └── Contents.json │ ├── Config Selected.imageset │ │ ├── Config Selected@2x.png │ │ ├── Config Selected@3x.png │ │ └── Contents.json │ ├── Config.imageset │ │ ├── Config@2x.png │ │ ├── Config@3x.png │ │ └── Contents.json │ ├── Contents.json │ ├── Dashboard Selected.imageset │ │ ├── Contents.json │ │ ├── Dashboard Selected@2x.png │ │ └── Dashboard Selected@3x.png │ ├── Dashboard.imageset │ │ ├── Contents.json │ │ ├── Dashboard@2x.png │ │ └── Dashboard@3x.png │ ├── Direct.imageset │ │ ├── Contents.json │ │ ├── Direct@2x.png │ │ └── Direct@3x.png │ ├── Home Selected.imageset │ │ ├── Contents.json │ │ ├── Home Selected@2x.png │ │ └── Home Selected@3x.png │ ├── Home.imageset │ │ ├── Contents.json │ │ ├── Home@2x.png │ │ └── Home@3x.png │ ├── List.imageset │ │ ├── Contents.json │ │ ├── List@2x.png │ │ └── List@3x.png │ ├── Log.imageset │ │ ├── Config@2x.png │ │ ├── Config@3x.png │ │ └── Contents.json │ ├── More Selected.imageset │ │ ├── Contents.json │ │ ├── More Selected@2x.png │ │ └── More Selected@3x.png │ ├── More.imageset │ │ ├── Contents.json │ │ ├── More@2x.png │ │ └── More@3x.png │ ├── Proxy.imageset │ │ ├── Contents.json │ │ ├── Proxy@2x.png │ │ └── Proxy@3x.png │ ├── Reject.imageset │ │ ├── Contents.json │ │ ├── Reject@2x.png │ │ └── Reject@3x.png │ ├── Settings.imageset │ │ ├── Contents.json │ │ ├── Settings@2x.png │ │ └── Settings@3x.png │ ├── Shadowsocks.imageset │ │ ├── Contents.json │ │ ├── Shadowsocks@2x.png │ │ └── Shadowsocks@3x.png │ └── User.imageset │ │ ├── Contents.json │ │ ├── User@2x.png │ │ └── User@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Localizable.strings ├── Base │ ├── ActionRow.swift │ ├── BaseButtonRow.swift │ ├── BaseEmptyView.swift │ ├── BaseSafariViewController.swift │ ├── QRCode │ │ ├── HMScanner.bundle │ │ │ ├── QRCodeScanLine@2x.png │ │ │ ├── ScanQR1@2x.png │ │ │ ├── ScanQR2@2x.png │ │ │ ├── ScanQR3@2x.png │ │ │ └── ScanQR4@2x.png │ │ ├── HMScanner.h │ │ ├── HMScanner.m │ │ ├── HMScannerBorder.h │ │ ├── HMScannerBorder.m │ │ ├── HMScannerMaskView.h │ │ ├── HMScannerMaskView.m │ │ ├── HMScannerViewController.h │ │ ├── HMScannerViewController.m │ │ ├── QRCodeScannerVC.h │ │ └── QRCodeScannerVC.m │ ├── RequestEventRow.swift │ └── SegmentPageVC.swift ├── CloudDetailViewController.swift ├── CloudViewController.swift ├── CollectionViewController.swift ├── Confidential.h ├── ConfigGroupCell.swift ├── ConfigGroupChooseVC.swift ├── Core │ ├── API.swift │ ├── CloudSetManager.swift │ ├── Importer.swift │ ├── User.swift │ └── VPN.swift ├── DashboardVC.swift ├── DataInitializer.swift ├── DefaultConfidential.h ├── FlatButton.swift ├── GeoLite2-Country.mmdb ├── HomePresenter.swift ├── HomeVC.swift ├── Info.plist ├── LogDetailViewController.swift ├── More │ └── SettingsViewController.swift ├── NotificationHandler.swift ├── PaddingLabel.swift ├── Potatso-Bridge-Header.h ├── Potatso.entitlements ├── Potatso.xcdatamodeld │ ├── .xccurrentversion │ ├── Potatso 2.xcdatamodel │ │ └── contents │ ├── Potatso 3.xcdatamodel │ │ └── contents │ └── Potatso.xcdatamodel │ │ └── contents ├── Proxy.xcdatamodeld │ └── Proxy.xcdatamodel │ │ └── contents ├── ProxyListViewController.swift ├── ProxyRow.swift ├── RecentRequestsCell.swift ├── RecentRequestsVC.swift ├── RequestDetailVC.swift ├── RequestModel.swift ├── RequestOverviewVC.swift ├── RuleCell.swift ├── RuleSetCell.swift ├── RuleSetListViewController.swift ├── Sync │ ├── AlertOperation.swift │ ├── CloudKitRecord.swift │ ├── FetchCloudChangesOperation.swift │ ├── ICloudSetupOperation.swift │ ├── ICloudSyncService.swift │ ├── PrepareZoneOperation.swift │ ├── PushLocalChangesBaseOperation.swift │ ├── PushLocalChangesOperation.swift │ ├── PushLocalDeletedChangesOperation.swift │ ├── PushLocalModifiedChangesOperation.swift │ ├── RealmCloud.swift │ ├── SyncManager.swift │ └── SyncVC.swift ├── UIManager.swift ├── UIViewControllerExtensions.swift ├── UrlHandler.swift ├── Utils │ ├── AlertUtils.swift │ ├── Color.swift │ ├── Error.swift │ ├── Event.swift │ ├── HUDUtils.swift │ ├── KeychainUtils.swift │ ├── LoggerUtils.swift │ ├── Receipt.h │ ├── Receipt.m │ ├── Receipt.swift │ └── RegexUtils.swift ├── config.plist ├── zh-Hans.lproj │ └── Localizable.strings └── zh-Hant.lproj │ └── Localizable.strings ├── PotatsoBase ├── Info.plist ├── InfoInternal.swift ├── JSONUtils.h ├── JSONUtils.m ├── Localized.swift ├── NSError+Helper.h ├── NSError+Helper.m ├── Potatso.h ├── Potatso.m ├── PotatsoBase.h ├── Settings.h └── Settings.m ├── PotatsoLibrary ├── Config.swift ├── Image.swift ├── Info.plist ├── Logging.swift ├── Manager.swift ├── Pollution.swift └── PotatsoLibrary.h ├── PotatsoLibraryTests ├── Info.plist └── PotatsoLibraryTests.swift ├── PotatsoModel ├── BaseModel.swift ├── ConfigurationGroup.swift ├── DBUtils.swift ├── Info.plist ├── PotatsoModel.h ├── Proxy.swift ├── Rule.swift └── RuleSet.swift ├── PotatsoTests ├── Info.plist └── PotatsoTests.swift ├── README.md ├── TodayWidget ├── Base.lproj │ ├── Localizable.strings │ └── MainInterface.storyboard ├── CurrentGroupCell.swift ├── Info.plist ├── TodayViewController.swift ├── TodayWidget.entitlements ├── zh-Hans.lproj │ └── Localizable.strings └── zh-Hant.lproj │ └── Localizable.strings └── genstrings.swift /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/.gitignore -------------------------------------------------------------------------------- /ADHERE_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/ADHERE_LICENSE.md -------------------------------------------------------------------------------- /Download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Download.svg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/LICENSE -------------------------------------------------------------------------------- /Library/Aspects/Aspects.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/Aspects/Aspects.podspec -------------------------------------------------------------------------------- /Library/Aspects/Aspects.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/Aspects/Aspects.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Library/Aspects/Aspects/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/Aspects/Aspects/Info.plist -------------------------------------------------------------------------------- /Library/Aspects/Aspects/Source/Aspects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/Aspects/Aspects/Source/Aspects.swift -------------------------------------------------------------------------------- /Library/Aspects/AspectsTests/AspectsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/Aspects/AspectsTests/AspectsTests.swift -------------------------------------------------------------------------------- /Library/Aspects/AspectsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/Aspects/AspectsTests/Info.plist -------------------------------------------------------------------------------- /Library/CallbackURLKit/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Library/CallbackURLKit/CallbackURLKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/CallbackURLKit.podspec -------------------------------------------------------------------------------- /Library/CallbackURLKit/CallbackURLKit/CallbackURLKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/CallbackURLKit/CallbackURLKit.h -------------------------------------------------------------------------------- /Library/CallbackURLKit/CallbackURLKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/CallbackURLKit/Info.plist -------------------------------------------------------------------------------- /Library/CallbackURLKit/CallbackURLKitClients/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/CallbackURLKitClients/Info.plist -------------------------------------------------------------------------------- /Library/CallbackURLKit/CallbackURLKitOSX/CallbackURLKitOSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/CallbackURLKitOSX/CallbackURLKitOSX.h -------------------------------------------------------------------------------- /Library/CallbackURLKit/CallbackURLKitOSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/CallbackURLKitOSX/Info.plist -------------------------------------------------------------------------------- /Library/CallbackURLKit/Clients/GoogleChrome.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/Clients/GoogleChrome.swift -------------------------------------------------------------------------------- /Library/CallbackURLKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/LICENSE -------------------------------------------------------------------------------- /Library/CallbackURLKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/Package.swift -------------------------------------------------------------------------------- /Library/CallbackURLKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/README.md -------------------------------------------------------------------------------- /Library/CallbackURLKit/SampleApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/SampleApp/Podfile -------------------------------------------------------------------------------- /Library/CallbackURLKit/Sources/CallbackURLKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/Sources/CallbackURLKit.swift -------------------------------------------------------------------------------- /Library/CallbackURLKit/Sources/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/Sources/Client.swift -------------------------------------------------------------------------------- /Library/CallbackURLKit/Sources/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/Sources/Extensions.swift -------------------------------------------------------------------------------- /Library/CallbackURLKit/Sources/Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/Sources/Manager.swift -------------------------------------------------------------------------------- /Library/CallbackURLKit/Sources/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/Sources/Request.swift -------------------------------------------------------------------------------- /Library/CallbackURLKit/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/CallbackURLKit/logo.png -------------------------------------------------------------------------------- /Library/ICSMainFramework/ICSMainFramework.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ICSMainFramework/ICSMainFramework.podspec -------------------------------------------------------------------------------- /Library/ICSMainFramework/ICSMainFramework/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ICSMainFramework/ICSMainFramework/AppDelegate.swift -------------------------------------------------------------------------------- /Library/ICSMainFramework/ICSMainFramework/AppLifeCycle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ICSMainFramework/ICSMainFramework/AppLifeCycle.swift -------------------------------------------------------------------------------- /Library/ICSMainFramework/ICSMainFramework/ICSMainFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ICSMainFramework/ICSMainFramework/ICSMainFramework.h -------------------------------------------------------------------------------- /Library/ICSMainFramework/ICSMainFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ICSMainFramework/ICSMainFramework/Info.plist -------------------------------------------------------------------------------- /Library/ICSMainFramework/ICSMainFramework/OBJCObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ICSMainFramework/ICSMainFramework/OBJCObjectFactory.h -------------------------------------------------------------------------------- /Library/ICSMainFramework/ICSMainFramework/OBJCObjectFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ICSMainFramework/ICSMainFramework/OBJCObjectFactory.m -------------------------------------------------------------------------------- /Library/ICSMainFramework/ICSMainFrameworkTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ICSMainFramework/ICSMainFrameworkTests/Info.plist -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath.podspec -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/an_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/an_config.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/an_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/an_core.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/an_core.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/an_core.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/an_direct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/an_direct.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/an_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/an_internals.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/an_proxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/an_proxy.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/an_socks4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/an_socks4.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/an_socks5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/an_socks5.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/an_ssl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/an_ssl.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/antinat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/antinat.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/iscmd5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/iscmd5.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/client/iscmd5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/client/iscmd5.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/fmemopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/fmemopen.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/fmemopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/fmemopen.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/AntinatServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/AntinatServer.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/AntinatServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/AntinatServer.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/addrinfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/addrinfo.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/an_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/an_main.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/an_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/an_main.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/an_serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/an_serv.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/auth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/auth.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/config.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/conn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/conn.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/libds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/libds.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/loggers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/loggers.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/os_unix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/os_unix.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/socks4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/socks4.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Antinat/server/socks5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Antinat/server/socks5.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Info.plist -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/actionlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/actionlist.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/actions.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/actions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/actions.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/cgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/cgi.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/cgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/cgi.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/cgiedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/cgiedit.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/cgiedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/cgiedit.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/cgisimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/cgisimple.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/cgisimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/cgisimple.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/deanimate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/deanimate.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/deanimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/deanimate.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/encode.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/encode.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/errlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/errlog.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/errlog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/errlog.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/filters.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/filters.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/gateway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/gateway.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/gateway.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/jbsockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/jbsockets.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/jbsockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/jbsockets.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/jcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/jcc.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/jcc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/jcc.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/list.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/list.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/loadcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/loadcfg.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/loadcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/loadcfg.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/loaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/loaders.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/loaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/loaders.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/miscutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/miscutil.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/miscutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/miscutil.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/parsers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/parsers.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/parsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/parsers.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/pcre/chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/pcre/chartables.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/pcre/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/pcre/get.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/pcre/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/pcre/internal.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/pcre/pcre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/pcre/pcre.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/pcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/pcre/pcre.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/pcre/pcreposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/pcre/pcreposix.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/pcre/pcreposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/pcre/pcreposix.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/pcre/study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/pcre/study.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/pcrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/pcrs.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/pcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/pcrs.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/project.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/radix.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/radix.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/sp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/sp_config.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/ssplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/ssplit.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/ssplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/ssplit.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/urlmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/urlmatch.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/Privoxy/urlmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/Privoxy/urlmatch.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/ShadowPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/ShadowPath.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/.gitignore -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/.gitmodules -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/.perltidyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/.perltidyrc -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/.travis.yml -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/.uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/.uncrustify.cfg -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/Changes.md -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/LICENSE -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/Makefile.am -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/NOTICE -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/README.dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/README.dev.md -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/README.md -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/appveyor.yml -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/bin/Makefile.am -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/bin/mmdblookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/bin/mmdblookup.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/bootstrap -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/common.mk -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/configure.ac -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/doc/mmdblookup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/doc/mmdblookup.md -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/src/Makefile.am -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/src/maxminddb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/src/maxminddb.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/Makefile.am -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/bad_pointers_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/bad_pointers_t.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/basic_lookup_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/basic_lookup_t.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/compile_c++_t.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/compile_c++_t.pl -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/data_types_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/data_types_t.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/dump_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/dump_t.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/get_value_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/get_value_t.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/metadata_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/metadata_t.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/mmdblookup_t.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/mmdblookup_t.pl -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/read_node_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/read_node_t.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/threads_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/threads_t.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libmaxminddb/t/version_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libmaxminddb/t/version_t.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libopenssl/include/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libopenssl/include/LICENSE -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libopenssl/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libopenssl/include/openssl/bn.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libopenssl/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libopenssl/include/openssl/dh.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libopenssl/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libopenssl/include/openssl/ec.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libopenssl/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libopenssl/include/openssl/ts.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libopenssl/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libopenssl/include/openssl/ui.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libopenssl/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libopenssl/lib/libcrypto.a -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libopenssl/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libopenssl/lib/libssl.a -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libsodium-ios/include/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libsodium-ios/include/sodium.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/libsodium-ios/lib/libsodium.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/libsodium-ios/lib/libsodium.a -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/.gitignore -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/.travis.yml -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/AUTHORS -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/COPYING -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/Changes -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/INSTALL -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/LICENSE -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/Makefile.am -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/Makefile.in -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/README.md -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/acl/chn.acl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/acl/chn.acl -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/acl/local.acl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/acl/local.acl -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/aclocal.m4 -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/auto/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/auto/ar-lib -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/auto/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/auto/compile -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/auto/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/auto/depcomp -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/auto/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/auto/missing -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf --install --force 4 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/config.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/config.h.in -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/configure -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/configure.ac -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/debian/rules -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/debian/shadowsocks-libev.docs: -------------------------------------------------------------------------------- 1 | AUTHORS 2 | README.md 3 | debian/copyright.original 4 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/libev/ev.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/libev/ev.3 -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/libev/ev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/libev/ev.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/libev/ev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/libev/ev.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/libipset/bdd/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/libipset/map/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/libipset/set/Makefile.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/libsodium/README: -------------------------------------------------------------------------------- 1 | See README.markdown 2 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/libsodium/src/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = \ 3 | libsodium 4 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/libsodium/src/libsodium/crypto_sign/ed25519/description: -------------------------------------------------------------------------------- 1 | EdDSA signatures using Curve25519 2 | -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/m4/zlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/m4/zlib.m4 -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/src/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/src/acl.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/src/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/src/acl.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/src/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/src/auth.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/src/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/src/auth.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/src/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/src/json.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/src/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/src/json.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/src/obfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/src/obfs.c -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/src/obfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/src/obfs.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPath/shadowsocks-libev/src/ss-nat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPath/shadowsocks-libev/src/ss-nat -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPathDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPathDemo/AppDelegate.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPathDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPathDemo/AppDelegate.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPathDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPathDemo/Info.plist -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPathDemo/Supporting Files/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPathDemo/Supporting Files/main.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPathDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPathDemo/ViewController.h -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPathDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPathDemo/ViewController.m -------------------------------------------------------------------------------- /Library/ShadowPath/ShadowPathDemo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/ShadowPath/ShadowPathDemo/config -------------------------------------------------------------------------------- /Library/YAML-Framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/.gitignore -------------------------------------------------------------------------------- /Library/YAML-Framework/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Library/YAML-Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/Info.plist -------------------------------------------------------------------------------- /Library/YAML-Framework/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/Readme.md -------------------------------------------------------------------------------- /Library/YAML-Framework/YAML iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/YAML iOS-Info.plist -------------------------------------------------------------------------------- /Library/YAML-Framework/YAML-Framework.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/YAML-Framework.podspec -------------------------------------------------------------------------------- /Library/YAML-Framework/YAML.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/YAML.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Library/YAML-Framework/YAMLSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/YAMLSerialization.h -------------------------------------------------------------------------------- /Library/YAML-Framework/YAMLSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/YAMLSerialization.m -------------------------------------------------------------------------------- /Library/YAML-Framework/YAMLUnitTests/YAMLUnitTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/YAMLUnitTests/YAMLUnitTests.h -------------------------------------------------------------------------------- /Library/YAML-Framework/YAMLUnitTests/YAMLUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/YAMLUnitTests/YAMLUnitTests.m -------------------------------------------------------------------------------- /Library/YAML-Framework/YAMLUnitTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Library/YAML-Framework/YAML_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/YAML_Prefix.pch -------------------------------------------------------------------------------- /Library/YAML-Framework/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/module.modulemap -------------------------------------------------------------------------------- /Library/YAML-Framework/test/bigboy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/bigboy.rb -------------------------------------------------------------------------------- /Library/YAML-Framework/test/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/events.c -------------------------------------------------------------------------------- /Library/YAML-Framework/test/fetch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/fetch.rb -------------------------------------------------------------------------------- /Library/YAML-Framework/test/spec12examples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/spec12examples.m -------------------------------------------------------------------------------- /Library/YAML-Framework/test/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/test.m -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/yaml/basic.yaml -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/items.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/yaml/items.yaml -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/map-in-seq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/yaml/map-in-seq.yaml -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/map.yaml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | bar: foo 3 | -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/yaml/mapping.yaml -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/yaml/simple.yaml -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-2-1-sequence-of-scalars-ball-players.yaml: -------------------------------------------------------------------------------- 1 | - Mark McGwire 2 | - Sammy Sosa 3 | - Ken Griffey -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-2-21-miscellaneous.yaml: -------------------------------------------------------------------------------- 1 | null: 2 | booleans: [ true, false ] 3 | string: '012345' -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-5-1-byte-order-mark.yaml: -------------------------------------------------------------------------------- 1 | ⇔# Comment only. -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-5-14-invalid-escaped-characters.yaml: -------------------------------------------------------------------------------- 1 | Bad escapes: 2 | "\c 3 | \xq-" -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-5-2-invalid-byte-order-mark.yaml: -------------------------------------------------------------------------------- 1 | - Invalid use of BOM 2 | ⇔ 3 | - Inside a document. -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-5-4-flow-collection-indicators.yaml: -------------------------------------------------------------------------------- 1 | sequence: [ one, two, ] 2 | mapping: { sky: blue, sea: green } -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-5-5-comment-indicator.yaml: -------------------------------------------------------------------------------- 1 | # Comment only. -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-5-9-directive-indicator.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | --- text -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-6-10-comment-lines.yaml: -------------------------------------------------------------------------------- 1 | # Comment 2 | 3 | -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-6-19-secondary-tag-handle.yaml: -------------------------------------------------------------------------------- 1 | %TAG !! tag:example.com,2000:app/ 2 | --- 3 | !!int 1 - 3 # Interval, not integer -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-6-20-tag-handles.yaml: -------------------------------------------------------------------------------- 1 | %TAG !e! tag:example.com,2000:app/ 2 | --- 3 | !e!foo "bar" -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-6-22-global-tag-prefix.yaml: -------------------------------------------------------------------------------- 1 | %TAG !e! tag:example.com,2000:app/ 2 | --- 3 | - !e!foo "bar" -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-6-24-verbatim-tags.yaml: -------------------------------------------------------------------------------- 1 | ! foo : 2 | ! baz -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-6-25-invalid-verbatim-tags.yaml: -------------------------------------------------------------------------------- 1 | - ! foo 2 | - !<$:?> bar -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-6-9-separated-comment.yaml: -------------------------------------------------------------------------------- 1 | key: # Comment 2 | valueeof -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-7-13-flow-sequence.yaml: -------------------------------------------------------------------------------- 1 | - [ one, two, ] 2 | - [three ,four] -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-7-19-single-pair-flow-mappings.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | foo: bar 3 | ] -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-7-20-single-pair-explicit-entry.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | ? foo 3 | bar : baz 4 | ] -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-7-7-single-quoted-characters.yaml: -------------------------------------------------------------------------------- 1 | 'here''s to "quotes"' -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-8-16-block-mappings.yaml: -------------------------------------------------------------------------------- 1 | block mapping: 2 | key: value -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-8-19-compact-block-mappings.yaml: -------------------------------------------------------------------------------- 1 | - sun: yellow 2 | - ? earth: blue 3 | : moon: white -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-8-7-literal-scalar.yaml: -------------------------------------------------------------------------------- 1 | | 2 | literal 3 | →text 4 | -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-8-9-folded-scalar.yaml: -------------------------------------------------------------------------------- 1 | > 2 | folded 3 | text 4 | -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-9-1-document-prefix.yaml: -------------------------------------------------------------------------------- 1 | ⇔# Comment 2 | # lines 3 | Document -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/spec12-example-9-2-document-markers.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | --- 3 | Document 4 | ... # Suffix -------------------------------------------------------------------------------- /Library/YAML-Framework/test/yaml/strange-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/test/yaml/strange-keys.yaml -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/LICENSE -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/Makefile.am -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/Makefile.in -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/README -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/aclocal.m4 -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/config.h -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/config.h.in -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/config/config.guess -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/config/config.sub -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/config/depcomp -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/config/install-sh -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/config/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/config/ltmain.sh -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/config/missing -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/configure -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/configure.ac -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/doxygen.cfg -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/annotated.html -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/bc_s.png -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/classes.html -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/closed.png -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/doxygen.css -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/doxygen.png -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/files.html -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/functions.html -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/globals.html -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/index.html -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/modules.html -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/nav_f.png -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/nav_h.png -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/open.png -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/tab_a.png -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/tab_b.png -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/tab_h.png -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/tab_s.png -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/tabs.css -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/doc/html/yaml_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/doc/html/yaml_8h.html -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/include/Makefile.am -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/include/Makefile.in -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/include/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/include/yaml.h -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/Makefile.am -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/Makefile.in -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/api.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/dumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/dumper.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/emitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/emitter.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/loader.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/parser.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/reader.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/scanner.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/writer.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/src/yaml_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/src/yaml_private.h -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/tests/Makefile.am -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/tests/Makefile.in -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/tests/run-dumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/tests/run-dumper.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/tests/run-emitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/tests/run-emitter.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/tests/run-loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/tests/run-loader.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/tests/run-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/tests/run-parser.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/tests/run-scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/tests/run-scanner.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/tests/test-reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/tests/test-reader.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/tests/test-version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/tests/test-version.c -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/Makefile.am -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/Makefile.in -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/config.h -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/vc6/libyaml.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/vc6/libyaml.dsw -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/vc6/run_dumper.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/vc6/run_dumper.dsp -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/vc6/run_loader.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/vc6/run_loader.dsp -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/vc6/run_parser.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/vc6/run_parser.dsp -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/vc6/yaml.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/vc6/yaml.dsp -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/vc6/yamldll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/vc6/yamldll.dsp -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/vs2003/libyaml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/vs2003/libyaml.sln -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/vs2003/yaml.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/vs2003/yaml.vcproj -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/vs2008/libyaml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/vs2008/libyaml.sln -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/win32/vs2008/yaml.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/win32/vs2008/yaml.vcproj -------------------------------------------------------------------------------- /Library/YAML-Framework/yaml-0.1.4/yaml-0.1.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Library/YAML-Framework/yaml-0.1.4/yaml-0.1.pc.in -------------------------------------------------------------------------------- /PacketProcessor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/Info.plist -------------------------------------------------------------------------------- /PacketProcessor/PacketProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/PacketProcessor.h -------------------------------------------------------------------------------- /PacketProcessor/TunnelInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/TunnelInterface.h -------------------------------------------------------------------------------- /PacketProcessor/TunnelInterface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/TunnelInterface.m -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/base/BLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/base/BLog.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/base/BLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/base/BLog.m -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/base/BLog_syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/base/BLog_syslog.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/base/BLog_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/base/BLog_syslog.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/base/BMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/base/BMutex.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/base/BPending.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/base/BPending.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/base/BPending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/base/BPending.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/base/BPending_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/base/BPending_list.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/base/DebugObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/base/DebugObject.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/base/DebugObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/base/DebugObject.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/BufferWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/BufferWriter.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/BufferWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/BufferWriter.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketBuffer.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketBuffer.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketPassConnector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketPassConnector.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketPassConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketPassConnector.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketPassFairQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketPassFairQueue.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketPassFairQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketPassFairQueue.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketPassInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketPassInterface.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketPassInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketPassInterface.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketProtoDecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketProtoDecoder.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketProtoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketProtoDecoder.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketProtoEncoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketProtoEncoder.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketProtoEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketProtoEncoder.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketProtoFlow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketProtoFlow.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketProtoFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketProtoFlow.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketRecvInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketRecvInterface.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketRecvInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketRecvInterface.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketStreamSender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketStreamSender.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/PacketStreamSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/PacketStreamSender.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/SinglePacketBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/SinglePacketBuffer.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/SinglePacketBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/SinglePacketBuffer.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/StreamPassInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/StreamPassInterface.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/StreamPassInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/StreamPassInterface.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/StreamRecvInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/StreamRecvInterface.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/flow/StreamRecvInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/flow/StreamRecvInterface.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/generated/blog_channel_ncd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/generated/blog_channel_ncd.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/generated/bproto_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/generated/bproto_addr.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/generated/bproto_msgproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/generated/bproto_msgproto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/custom/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/custom/arch/cc.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/custom/arch/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/custom/arch/perf.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/custom/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/custom/lwipopts.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/custom/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/custom/sys.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/def.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/inet_chksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/inet_chksum.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/init.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/ipv4/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/ipv4/icmp.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/ipv4/ip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/ipv4/ip4.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/ipv4/ip_frag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/ipv4/ip_frag.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/ipv6/icmp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/ipv6/icmp6.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/ipv6/ip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/ipv6/ip6.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/ipv6/nd6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/ipv6/nd6.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/mem.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/memp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/memp.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/netif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/netif.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/pbuf.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/stats.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/tcp.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/tcp_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/tcp_in.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/tcp_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/tcp_out.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/timers.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/core/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/core/udp.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/api.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/arch.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/def.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/dhcp.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/dns.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/err.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/init.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/ip.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/mem.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/memp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/memp.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/opt.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/pbuf.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/raw.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/sio.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/snmp.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/sys.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/tcp.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/lwip/src/include/lwip/udp.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/BRefTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/BRefTarget.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/Utf16Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/Utf16Decoder.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/Utf16Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/Utf16Encoder.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/Utf8Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/Utf8Decoder.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/Utf8Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/Utf8Encoder.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/arp_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/arp_proto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/array_length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/array_length.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/ascii_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/ascii_utils.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/balign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/balign.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/balloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/balloc.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/blimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/blimits.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/bsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/bsize.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/bsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/bsort.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/bstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/bstring.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/byteorder.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/cmdline.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/compare.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/concat_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/concat_strings.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/dead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/dead.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/debug.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/debugcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/debugcounter.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/debugerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/debugerror.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/dhcp_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/dhcp_proto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/ethernet_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/ethernet_proto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/exparray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/exparray.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/expstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/expstring.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/find_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/find_char.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/find_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/find_program.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/get_iface_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/get_iface_info.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/grow_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/grow_array.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/hashfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/hashfun.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/igmp_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/igmp_proto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/ipaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/ipaddr.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/ipaddr6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/ipaddr6.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/ipv4_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/ipv4_proto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/ipv6_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/ipv6_proto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/loggers_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/loggers_string.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/loglevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/loglevel.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/maxalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/maxalign.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/memref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/memref.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/merge.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/minmax.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/modadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/modadd.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/mswsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/mswsock.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/nonblocking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/nonblocking.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/nsskey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/nsskey.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/offset.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/open_standard_streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/open_standard_streams.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/overflow.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/packed.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/parse_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/parse_number.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/print_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/print_macros.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/read_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/read_file.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/read_write_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/read_write_int.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/socks_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/socks_proto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/sslsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/sslsocket.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/stdbuf_cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/stdbuf_cmdline.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/strdup.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/string_begins_with.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/string_begins_with.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/substring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/substring.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/udp_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/udp_proto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/unicode_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/unicode_funcs.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/version.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/misc/write_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/misc/write_file.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/addr.bproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/addr.bproto -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/addr.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/dataproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/dataproto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/fragmentproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/fragmentproto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/msgproto.bproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/msgproto.bproto -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/msgproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/msgproto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/packetproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/packetproto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/requestproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/requestproto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/scproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/scproto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/spproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/spproto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/protocol/udpgw_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/protocol/udpgw_proto.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/socksclient/BSocksClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/socksclient/BSocksClient.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/socksclient/BSocksClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/socksclient/BSocksClient.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/BAVL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/BAVL.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/CAvl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/CAvl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/CAvl_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/CAvl_decl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/CAvl_footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/CAvl_footer.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/CAvl_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/CAvl_header.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/CAvl_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/CAvl_impl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/CHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/CHash.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/CHash_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/CHash_decl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/CHash_footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/CHash_footer.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/CHash_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/CHash_header.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/CHash_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/CHash_impl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/ChunkBuffer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/ChunkBuffer2.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/IndexedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/IndexedList.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/IndexedList_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/IndexedList_tree.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/LinkedList0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/LinkedList0.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/LinkedList1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/LinkedList1.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/LinkedList3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/LinkedList3.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/SAvl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/SAvl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/SAvl_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/SAvl_decl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/SAvl_footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/SAvl_footer.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/SAvl_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/SAvl_header.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/SAvl_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/SAvl_impl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/SAvl_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/SAvl_tree.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/SLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/SLinkedList.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/SLinkedList_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/SLinkedList_decl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/SLinkedList_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/SLinkedList_impl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/Vector.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/Vector_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/Vector_decl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/Vector_footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/Vector_footer.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/Vector_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/Vector_header.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/structure/Vector_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/structure/Vector_impl.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BAddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BAddr.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BConnection.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BConnection_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BConnection_common.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BConnection_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BConnection_unix.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BConnection_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BConnection_unix.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BDatagram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BDatagram.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BDatagram_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BDatagram_unix.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BDatagram_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BDatagram_unix.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BNetwork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BNetwork.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BNetwork.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BReactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BReactor.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BReactor_badvpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BReactor_badvpn.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BReactor_badvpn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BReactor_badvpn.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BSignal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BSignal.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BSignal.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BTime.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BTime.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BUnixSignal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BUnixSignal.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/system/BUnixSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/system/BUnixSignal.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/tun2socks/SocksUdpGwClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/tun2socks/SocksUdpGwClient.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/tun2socks/SocksUdpGwClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/tun2socks/SocksUdpGwClient.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/tun2socks/tun2socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/tun2socks/tun2socks.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/tun2socks/tun2socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/tun2socks/tun2socks.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/tuntap/BTap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/tuntap/BTap.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/tuntap/BTap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/tuntap/BTap.m -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/udpgw/udpgw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/udpgw/udpgw.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/udpgw/udpgw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/udpgw/udpgw.h -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/udpgw_client/UdpGwClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/udpgw_client/UdpGwClient.c -------------------------------------------------------------------------------- /PacketProcessor/tun2socks-iOS/udpgw_client/UdpGwClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketProcessor/tun2socks-iOS/udpgw_client/UdpGwClient.h -------------------------------------------------------------------------------- /PacketTunnel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketTunnel/Info.plist -------------------------------------------------------------------------------- /PacketTunnel/PacketTunnel.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketTunnel/PacketTunnel.entitlements -------------------------------------------------------------------------------- /PacketTunnel/PacketTunnelProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketTunnel/PacketTunnelProvider.h -------------------------------------------------------------------------------- /PacketTunnel/PacketTunnelProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketTunnel/PacketTunnelProvider.m -------------------------------------------------------------------------------- /PacketTunnel/ProxyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketTunnel/ProxyManager.h -------------------------------------------------------------------------------- /PacketTunnel/ProxyManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketTunnel/ProxyManager.m -------------------------------------------------------------------------------- /PacketTunnel/TunnelError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketTunnel/TunnelError.h -------------------------------------------------------------------------------- /PacketTunnel/TunnelError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketTunnel/TunnelError.m -------------------------------------------------------------------------------- /PacketTunnel/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketTunnel/dns.h -------------------------------------------------------------------------------- /PacketTunnel/dns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PacketTunnel/dns.m -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Potatso.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Potatso.xcodeproj/xcshareddata/xcschemes/Potatso.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso.xcodeproj/xcshareddata/xcschemes/Potatso.xcscheme -------------------------------------------------------------------------------- /Potatso.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Potatso.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Potatso/Advance/ProxyConfigurationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Advance/ProxyConfigurationViewController.swift -------------------------------------------------------------------------------- /Potatso/Advance/ProxySelectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Advance/ProxySelectionViewController.swift -------------------------------------------------------------------------------- /Potatso/Advance/RuleConfigurationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Advance/RuleConfigurationViewController.swift -------------------------------------------------------------------------------- /Potatso/Advance/RuleSetConfigurationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Advance/RuleSetConfigurationViewController.swift -------------------------------------------------------------------------------- /Potatso/Advance/RuleSetsSelectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Advance/RuleSetsSelectionViewController.swift -------------------------------------------------------------------------------- /Potatso/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/AppDelegate.swift -------------------------------------------------------------------------------- /Potatso/AppInitializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/AppInitializer.swift -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Back.imageset/Back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Back.imageset/Back@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Back.imageset/Back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Back.imageset/Back@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Back.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Config.imageset/Config@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Config.imageset/Config@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Config.imageset/Config@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Config.imageset/Config@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Config.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Config.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Dashboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Dashboard.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Direct.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Direct.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Direct.imageset/Direct@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Direct.imageset/Direct@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Direct.imageset/Direct@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Direct.imageset/Direct@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Home.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Home.imageset/Home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Home.imageset/Home@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Home.imageset/Home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Home.imageset/Home@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/List.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/List.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/List.imageset/List@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/List.imageset/List@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/List.imageset/List@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/List.imageset/List@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Log.imageset/Config@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Log.imageset/Config@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Log.imageset/Config@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Log.imageset/Config@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Log.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Log.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/More.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/More.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/More.imageset/More@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/More.imageset/More@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/More.imageset/More@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/More.imageset/More@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Proxy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Proxy.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Proxy.imageset/Proxy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Proxy.imageset/Proxy@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Proxy.imageset/Proxy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Proxy.imageset/Proxy@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Reject.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Reject.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Reject.imageset/Reject@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Reject.imageset/Reject@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Reject.imageset/Reject@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Reject.imageset/Reject@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Settings.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Settings.imageset/Settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Settings.imageset/Settings@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Settings.imageset/Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Settings.imageset/Settings@3x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/Shadowsocks.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/Shadowsocks.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/User.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/User.imageset/Contents.json -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/User.imageset/User@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/User.imageset/User@2x.png -------------------------------------------------------------------------------- /Potatso/Assets.xcassets/User.imageset/User@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Assets.xcassets/User.imageset/User@3x.png -------------------------------------------------------------------------------- /Potatso/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Potatso/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /Potatso/Base/ActionRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/ActionRow.swift -------------------------------------------------------------------------------- /Potatso/Base/BaseButtonRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/BaseButtonRow.swift -------------------------------------------------------------------------------- /Potatso/Base/BaseEmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/BaseEmptyView.swift -------------------------------------------------------------------------------- /Potatso/Base/BaseSafariViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/BaseSafariViewController.swift -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScanner.bundle/QRCodeScanLine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScanner.bundle/QRCodeScanLine@2x.png -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScanner.bundle/ScanQR1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScanner.bundle/ScanQR1@2x.png -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScanner.bundle/ScanQR2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScanner.bundle/ScanQR2@2x.png -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScanner.bundle/ScanQR3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScanner.bundle/ScanQR3@2x.png -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScanner.bundle/ScanQR4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScanner.bundle/ScanQR4@2x.png -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScanner.h -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScanner.m -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScannerBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScannerBorder.h -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScannerBorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScannerBorder.m -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScannerMaskView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScannerMaskView.h -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScannerMaskView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScannerMaskView.m -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScannerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScannerViewController.h -------------------------------------------------------------------------------- /Potatso/Base/QRCode/HMScannerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/HMScannerViewController.m -------------------------------------------------------------------------------- /Potatso/Base/QRCode/QRCodeScannerVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/QRCodeScannerVC.h -------------------------------------------------------------------------------- /Potatso/Base/QRCode/QRCodeScannerVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/QRCode/QRCodeScannerVC.m -------------------------------------------------------------------------------- /Potatso/Base/RequestEventRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/RequestEventRow.swift -------------------------------------------------------------------------------- /Potatso/Base/SegmentPageVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Base/SegmentPageVC.swift -------------------------------------------------------------------------------- /Potatso/CloudDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/CloudDetailViewController.swift -------------------------------------------------------------------------------- /Potatso/CloudViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/CloudViewController.swift -------------------------------------------------------------------------------- /Potatso/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/CollectionViewController.swift -------------------------------------------------------------------------------- /Potatso/Confidential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Confidential.h -------------------------------------------------------------------------------- /Potatso/ConfigGroupCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/ConfigGroupCell.swift -------------------------------------------------------------------------------- /Potatso/ConfigGroupChooseVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/ConfigGroupChooseVC.swift -------------------------------------------------------------------------------- /Potatso/Core/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Core/API.swift -------------------------------------------------------------------------------- /Potatso/Core/CloudSetManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Core/CloudSetManager.swift -------------------------------------------------------------------------------- /Potatso/Core/Importer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Core/Importer.swift -------------------------------------------------------------------------------- /Potatso/Core/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Core/User.swift -------------------------------------------------------------------------------- /Potatso/Core/VPN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Core/VPN.swift -------------------------------------------------------------------------------- /Potatso/DashboardVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/DashboardVC.swift -------------------------------------------------------------------------------- /Potatso/DataInitializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/DataInitializer.swift -------------------------------------------------------------------------------- /Potatso/DefaultConfidential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/DefaultConfidential.h -------------------------------------------------------------------------------- /Potatso/FlatButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/FlatButton.swift -------------------------------------------------------------------------------- /Potatso/GeoLite2-Country.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/GeoLite2-Country.mmdb -------------------------------------------------------------------------------- /Potatso/HomePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/HomePresenter.swift -------------------------------------------------------------------------------- /Potatso/HomeVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/HomeVC.swift -------------------------------------------------------------------------------- /Potatso/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Info.plist -------------------------------------------------------------------------------- /Potatso/LogDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/LogDetailViewController.swift -------------------------------------------------------------------------------- /Potatso/More/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/More/SettingsViewController.swift -------------------------------------------------------------------------------- /Potatso/NotificationHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/NotificationHandler.swift -------------------------------------------------------------------------------- /Potatso/PaddingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/PaddingLabel.swift -------------------------------------------------------------------------------- /Potatso/Potatso-Bridge-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Potatso-Bridge-Header.h -------------------------------------------------------------------------------- /Potatso/Potatso.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Potatso.entitlements -------------------------------------------------------------------------------- /Potatso/Potatso.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Potatso.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Potatso/Potatso.xcdatamodeld/Potatso.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Potatso.xcdatamodeld/Potatso.xcdatamodel/contents -------------------------------------------------------------------------------- /Potatso/Proxy.xcdatamodeld/Proxy.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Proxy.xcdatamodeld/Proxy.xcdatamodel/contents -------------------------------------------------------------------------------- /Potatso/ProxyListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/ProxyListViewController.swift -------------------------------------------------------------------------------- /Potatso/ProxyRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/ProxyRow.swift -------------------------------------------------------------------------------- /Potatso/RecentRequestsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/RecentRequestsCell.swift -------------------------------------------------------------------------------- /Potatso/RecentRequestsVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/RecentRequestsVC.swift -------------------------------------------------------------------------------- /Potatso/RequestDetailVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/RequestDetailVC.swift -------------------------------------------------------------------------------- /Potatso/RequestModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/RequestModel.swift -------------------------------------------------------------------------------- /Potatso/RequestOverviewVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/RequestOverviewVC.swift -------------------------------------------------------------------------------- /Potatso/RuleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/RuleCell.swift -------------------------------------------------------------------------------- /Potatso/RuleSetCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/RuleSetCell.swift -------------------------------------------------------------------------------- /Potatso/RuleSetListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/RuleSetListViewController.swift -------------------------------------------------------------------------------- /Potatso/Sync/AlertOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/AlertOperation.swift -------------------------------------------------------------------------------- /Potatso/Sync/CloudKitRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/CloudKitRecord.swift -------------------------------------------------------------------------------- /Potatso/Sync/FetchCloudChangesOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/FetchCloudChangesOperation.swift -------------------------------------------------------------------------------- /Potatso/Sync/ICloudSetupOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/ICloudSetupOperation.swift -------------------------------------------------------------------------------- /Potatso/Sync/ICloudSyncService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/ICloudSyncService.swift -------------------------------------------------------------------------------- /Potatso/Sync/PrepareZoneOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/PrepareZoneOperation.swift -------------------------------------------------------------------------------- /Potatso/Sync/PushLocalChangesBaseOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/PushLocalChangesBaseOperation.swift -------------------------------------------------------------------------------- /Potatso/Sync/PushLocalChangesOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/PushLocalChangesOperation.swift -------------------------------------------------------------------------------- /Potatso/Sync/PushLocalDeletedChangesOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/PushLocalDeletedChangesOperation.swift -------------------------------------------------------------------------------- /Potatso/Sync/PushLocalModifiedChangesOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/PushLocalModifiedChangesOperation.swift -------------------------------------------------------------------------------- /Potatso/Sync/RealmCloud.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/RealmCloud.swift -------------------------------------------------------------------------------- /Potatso/Sync/SyncManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/SyncManager.swift -------------------------------------------------------------------------------- /Potatso/Sync/SyncVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Sync/SyncVC.swift -------------------------------------------------------------------------------- /Potatso/UIManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/UIManager.swift -------------------------------------------------------------------------------- /Potatso/UIViewControllerExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/UIViewControllerExtensions.swift -------------------------------------------------------------------------------- /Potatso/UrlHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/UrlHandler.swift -------------------------------------------------------------------------------- /Potatso/Utils/AlertUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/AlertUtils.swift -------------------------------------------------------------------------------- /Potatso/Utils/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/Color.swift -------------------------------------------------------------------------------- /Potatso/Utils/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/Error.swift -------------------------------------------------------------------------------- /Potatso/Utils/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/Event.swift -------------------------------------------------------------------------------- /Potatso/Utils/HUDUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/HUDUtils.swift -------------------------------------------------------------------------------- /Potatso/Utils/KeychainUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/KeychainUtils.swift -------------------------------------------------------------------------------- /Potatso/Utils/LoggerUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/LoggerUtils.swift -------------------------------------------------------------------------------- /Potatso/Utils/Receipt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/Receipt.h -------------------------------------------------------------------------------- /Potatso/Utils/Receipt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/Receipt.m -------------------------------------------------------------------------------- /Potatso/Utils/Receipt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/Receipt.swift -------------------------------------------------------------------------------- /Potatso/Utils/RegexUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/Utils/RegexUtils.swift -------------------------------------------------------------------------------- /Potatso/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/config.plist -------------------------------------------------------------------------------- /Potatso/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Potatso/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/Potatso/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /PotatsoBase/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/Info.plist -------------------------------------------------------------------------------- /PotatsoBase/InfoInternal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/InfoInternal.swift -------------------------------------------------------------------------------- /PotatsoBase/JSONUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/JSONUtils.h -------------------------------------------------------------------------------- /PotatsoBase/JSONUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/JSONUtils.m -------------------------------------------------------------------------------- /PotatsoBase/Localized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/Localized.swift -------------------------------------------------------------------------------- /PotatsoBase/NSError+Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/NSError+Helper.h -------------------------------------------------------------------------------- /PotatsoBase/NSError+Helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/NSError+Helper.m -------------------------------------------------------------------------------- /PotatsoBase/Potatso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/Potatso.h -------------------------------------------------------------------------------- /PotatsoBase/Potatso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/Potatso.m -------------------------------------------------------------------------------- /PotatsoBase/PotatsoBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/PotatsoBase.h -------------------------------------------------------------------------------- /PotatsoBase/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/Settings.h -------------------------------------------------------------------------------- /PotatsoBase/Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoBase/Settings.m -------------------------------------------------------------------------------- /PotatsoLibrary/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoLibrary/Config.swift -------------------------------------------------------------------------------- /PotatsoLibrary/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoLibrary/Image.swift -------------------------------------------------------------------------------- /PotatsoLibrary/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoLibrary/Info.plist -------------------------------------------------------------------------------- /PotatsoLibrary/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoLibrary/Logging.swift -------------------------------------------------------------------------------- /PotatsoLibrary/Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoLibrary/Manager.swift -------------------------------------------------------------------------------- /PotatsoLibrary/Pollution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoLibrary/Pollution.swift -------------------------------------------------------------------------------- /PotatsoLibrary/PotatsoLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoLibrary/PotatsoLibrary.h -------------------------------------------------------------------------------- /PotatsoLibraryTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoLibraryTests/Info.plist -------------------------------------------------------------------------------- /PotatsoLibraryTests/PotatsoLibraryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoLibraryTests/PotatsoLibraryTests.swift -------------------------------------------------------------------------------- /PotatsoModel/BaseModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoModel/BaseModel.swift -------------------------------------------------------------------------------- /PotatsoModel/ConfigurationGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoModel/ConfigurationGroup.swift -------------------------------------------------------------------------------- /PotatsoModel/DBUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoModel/DBUtils.swift -------------------------------------------------------------------------------- /PotatsoModel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoModel/Info.plist -------------------------------------------------------------------------------- /PotatsoModel/PotatsoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoModel/PotatsoModel.h -------------------------------------------------------------------------------- /PotatsoModel/Proxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoModel/Proxy.swift -------------------------------------------------------------------------------- /PotatsoModel/Rule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoModel/Rule.swift -------------------------------------------------------------------------------- /PotatsoModel/RuleSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoModel/RuleSet.swift -------------------------------------------------------------------------------- /PotatsoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoTests/Info.plist -------------------------------------------------------------------------------- /PotatsoTests/PotatsoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/PotatsoTests/PotatsoTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/README.md -------------------------------------------------------------------------------- /TodayWidget/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/TodayWidget/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /TodayWidget/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/TodayWidget/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /TodayWidget/CurrentGroupCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/TodayWidget/CurrentGroupCell.swift -------------------------------------------------------------------------------- /TodayWidget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/TodayWidget/Info.plist -------------------------------------------------------------------------------- /TodayWidget/TodayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/TodayWidget/TodayViewController.swift -------------------------------------------------------------------------------- /TodayWidget/TodayWidget.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/TodayWidget/TodayWidget.entitlements -------------------------------------------------------------------------------- /TodayWidget/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/TodayWidget/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /TodayWidget/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/TodayWidget/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /genstrings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Git-KevinChuang/Potatso-swift5/HEAD/genstrings.swift --------------------------------------------------------------------------------