gitextract_ltqu1_1u/ ├── .gitignore ├── .travis.yml ├── COPYING ├── DONATORS ├── INSTALL.md ├── Makefile.am ├── README.md ├── auto_tests/ │ ├── Makefile.inc │ ├── TCP_test.c │ ├── assoc_test.c │ ├── crypto_test.c │ ├── dht_test.c │ ├── encryptsave_test.c │ ├── friends_test.c │ ├── helpers.h │ ├── messenger_test.c │ ├── network_test.c │ ├── onion_test.c │ ├── skeleton_test.c │ ├── tox_test.c │ ├── toxav_basic_test.c │ └── toxav_many_test.c ├── autogen.sh ├── configure.ac ├── dist-build/ │ ├── android-arm.sh │ ├── android-armv7.sh │ ├── android-build.sh │ ├── android-mips.sh │ └── android-x86.sh ├── docs/ │ ├── Group-Chats.md │ ├── Hardening.txt │ ├── Hardening_docs.txt │ ├── Prevent_Tracking.txt │ ├── TCP_Network.txt │ ├── TODO.md │ ├── Tox_middle_level_network_protocol.txt │ ├── av_api.md │ └── updates/ │ ├── Crypto.md │ ├── DHT.md │ ├── Spam-Prevention.md │ └── Symmetric-NAT-Transversal.md ├── libtoxav.pc.in ├── libtoxcore.pc.in ├── m4/ │ └── pkg.m4 ├── other/ │ ├── DHT_bootstrap.c │ ├── DHTnodes │ ├── Makefile.inc │ ├── apidsl/ │ │ ├── README.md │ │ ├── tox.in.h │ │ └── toxav.in.h │ ├── astyle/ │ │ ├── README.md │ │ ├── astylerc │ │ └── pre-commit │ ├── bootstrap_daemon/ │ │ ├── README.md │ │ ├── docker/ │ │ │ ├── Dockerfile │ │ │ └── get-nodes.py │ │ ├── src/ │ │ │ ├── Makefile.inc │ │ │ ├── command_line_arguments.c │ │ │ ├── command_line_arguments.h │ │ │ ├── config.c │ │ │ ├── config_defaults.h │ │ │ ├── global.h │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ └── tox-bootstrapd.c │ │ ├── tox-bootstrapd.conf │ │ ├── tox-bootstrapd.service │ │ └── tox-bootstrapd.sh │ ├── bootstrap_node_packets.c │ ├── bootstrap_node_packets.h │ ├── fun/ │ │ ├── bootstrap_node_info.py │ │ ├── cracker.c │ │ ├── make-funny-savefile.py │ │ ├── sign.c │ │ └── strkey.c │ └── osx_build_script_toxcore.sh ├── super_donators/ │ ├── LittleVulpix │ ├── grencez_tok5.c │ └── sir@cmpwn.com ├── testing/ │ ├── DHT_test.c │ ├── Makefile.inc │ ├── Messenger_test.c │ ├── av_test.c │ ├── dns3_test.c │ ├── irc_syncbot.c │ ├── misc_tools.c │ ├── nTox.c │ ├── nTox.h │ ├── tox_shell.c │ └── tox_sync.c ├── tox.spec.in ├── toxav/ │ ├── Makefile.inc │ ├── audio.c │ ├── audio.h │ ├── bwcontroller.c │ ├── bwcontroller.h │ ├── group.c │ ├── group.h │ ├── msi.c │ ├── msi.h │ ├── rtp.c │ ├── rtp.h │ ├── toxav.c │ ├── toxav.h │ ├── toxav_old.c │ ├── video.c │ └── video.h ├── toxcore/ │ ├── DHT.c │ ├── DHT.h │ ├── LAN_discovery.c │ ├── LAN_discovery.h │ ├── Makefile.inc │ ├── Messenger.c │ ├── Messenger.h │ ├── TCP_client.c │ ├── TCP_client.h │ ├── TCP_connection.c │ ├── TCP_connection.h │ ├── TCP_server.c │ ├── TCP_server.h │ ├── assoc.c │ ├── assoc.h │ ├── crypto_core.c │ ├── crypto_core.h │ ├── friend_connection.c │ ├── friend_connection.h │ ├── friend_requests.c │ ├── friend_requests.h │ ├── group.c │ ├── group.h │ ├── list.c │ ├── list.h │ ├── logger.c │ ├── logger.h │ ├── misc_tools.h │ ├── net_crypto.c │ ├── net_crypto.h │ ├── network.c │ ├── network.h │ ├── onion.c │ ├── onion.h │ ├── onion_announce.c │ ├── onion_announce.h │ ├── onion_client.c │ ├── onion_client.h │ ├── ping.c │ ├── ping.h │ ├── ping_array.c │ ├── ping_array.h │ ├── tox.c │ ├── tox.h │ ├── tox_old.h │ ├── tox_old_code.h │ ├── util.c │ └── util.h ├── toxdns/ │ ├── Makefile.inc │ ├── toxdns.c │ └── toxdns.h └── toxencryptsave/ ├── Makefile.inc ├── crypto_pwhash_scryptsalsa208sha256/ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ ├── crypto_scrypt-common.c │ ├── crypto_scrypt.h │ ├── export.h │ ├── nosse/ │ │ └── pwhash_scryptsalsa208sha256_nosse.c │ ├── note_to_maintainers.txt │ ├── pbkdf2-sha256.c │ ├── pbkdf2-sha256.h │ ├── pwhash_scryptsalsa208sha256.c │ ├── runtime.c │ ├── runtime.h │ ├── scrypt_platform.c │ ├── sse/ │ │ └── pwhash_scryptsalsa208sha256_sse.c │ ├── sysendian.h │ ├── utils.c │ └── utils.h ├── defines.h ├── toxencryptsave.c └── toxencryptsave.h