├── .circleci ├── build-cross-generic-linux ├── cmake-asan ├── cmake-normal ├── cmake-tsan ├── cmake-ubsan ├── config.yml └── generate_cross_build_configs.sh ├── .cirrus.yml ├── .clang-format ├── .clusterfuzzlite ├── Dockerfile └── build.sh ├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml ├── scripts │ ├── autotools-linux │ ├── cmake-android │ ├── cmake-freebsd-stage2 │ ├── cmake-osx │ ├── cmake-win32 │ ├── cmake-win64 │ ├── cmake-windows.sh │ ├── coverage-linux │ ├── flags-clang.sh │ ├── flags-coverage.sh │ ├── flags-gcc.sh │ ├── flags.sh │ ├── sonar-build │ ├── sonar-prepare │ └── tox-bootstrapd-docker └── workflows │ ├── amalgamation_test.yml │ ├── amalgamation_test_win64.yml │ ├── ci.yml │ ├── ci_cross_arm64.yml │ ├── ci_cross_generic.template │ ├── ci_cross_mips.yml │ ├── ci_cross_riscv64.yml │ ├── ci_cross_s390x.yml │ ├── codeql.yml │ ├── custom_tests_asan.yml │ ├── custom_tests_tsan.yml │ └── tcc.yml ├── .gitignore ├── .hadolint.yaml ├── .localrun ├── .gitignore ├── Dockerfile_ffl_ub20 ├── Dockerfile_ub20 ├── generate_amalgamation.sh ├── run_amalgamation_cpp_test_windows.sh ├── run_amalgamation_test_windows.sh ├── run_docker_asan.sh ├── run_docker_asan_fast.sh ├── run_docker_bazel.sh ├── run_docker_cross_custom_tests_fast.sh ├── run_docker_custom_tests.sh ├── run_docker_custom_tests_fast.sh ├── run_docker_custom_tests_fast_tsan.sh ├── run_docker_msan.sh ├── run_docker_normal__alpine.sh ├── run_docker_s390x.sh ├── run_docker_tsan.sh ├── run_docker_tsan_fast.sh └── run_tcc.sh ├── .restyled.yaml ├── BUILD.bazel ├── CHANGELOG.md ├── CMakeLists.txt ├── DONATORS ├── INSTALL.md ├── LICENSE ├── Makefile.am ├── README.md ├── amalgamation ├── .gitignore ├── Makefile ├── amalgamation_cpp_test.cpp ├── amalgamation_test.c ├── toxcore_amalgamation.c └── toxcore_amalgamation_no_toxav.c ├── appveyor.yml ├── auto_tests ├── BUILD.bazel ├── CMakeLists.txt ├── Makefile.inc ├── TCP_test.c ├── announce_test.c ├── auto_test_support.c ├── auto_test_support.h ├── bootstrap_test.c ├── check_compat.h ├── conference_av_test.c ├── conference_double_invite_test.c ├── conference_invite_merge_test.c ├── conference_peer_nick_test.c ├── conference_simple_test.c ├── conference_test.c ├── conference_two_test.c ├── crypto_test.c ├── data │ └── save.tox ├── dht_getnodes_api_test.c ├── encryptsave_test.c ├── file_saving_test.c ├── file_transfer_test.c ├── forwarding_test.c ├── friend_connection_test.c ├── friend_request_spam_test.c ├── friend_request_test.c ├── group_general_test.c ├── group_invite_test.c ├── group_message_test.c ├── group_moderation_test.c ├── group_save_test.c ├── group_state_test.c ├── group_sync_test.c ├── group_tcp_test.c ├── group_topic_test.c ├── invalid_tcp_proxy_test.c ├── invalid_udp_proxy_test.c ├── lan_discovery_test.c ├── lossless_packet_test.c ├── lossy_packet_test.c ├── network_test.c ├── onion_test.c ├── overflow_recvq_test.c ├── overflow_sendq_test.c ├── proxy_test.c ├── reconnect_test.c ├── save_compatibility_test.c ├── save_friend_test.c ├── save_load_test.c ├── send_message_test.c ├── set_name_test.c ├── set_status_message_test.c ├── tcp_relay_test.c ├── tox_dispatch_test.c ├── tox_events_test.c ├── tox_many_tcp_test.c ├── tox_many_test.c ├── tox_strncasecmp_test.c ├── toxav_basic_test.c ├── toxav_many_test.c ├── typing_test.c └── version_test.c ├── autogen.sh ├── cmake ├── CompileGTest.cmake ├── Dependencies.cmake ├── MacRpath.cmake ├── ModulePackage.cmake └── StrictAbi.cmake ├── codecov.yml ├── conanfile.py ├── configure ├── configure.ac ├── configure_aux ├── ar-lib ├── compile ├── config.guess ├── config.sub ├── depcomp ├── install-sh ├── ltmain.sh ├── missing └── test-driver ├── cross_custom_tests ├── 0010_tox_ngc_large_incoming_custom_packets │ ├── test.sh │ ├── toktok_receiver.c │ └── z_sender.c └── 0020_tox_vpx_large_pkts_send │ ├── test.sh │ ├── toktok_receiver.c │ └── z_sender.c ├── custom_tests ├── 0005_tox_local_lan_only_127001_test.c ├── 0007_tox_util_tests_01.c.l ├── 0009_tox_ngc_encode_decode_video_test_01.c ├── 0090_ftv2_speed_test_tcp.c.l ├── 0095_ftv2_speed_test_udp.c ├── 0098_ftv2_speed_test_tor_tcp.c.l ├── 0100_ftv2_sender_stops_iterating.c ├── 0200_ftv2_receiver_stops_iterating.c ├── 0300_ftv2_send_more_files_at_same_time.c ├── 0302_ftv2_send_many_files.c ├── 0304_ftv2a_check_udp.c ├── 0306_ftv2a_check_2_udp.c ├── 0400_ftv2_receiver_restarts.c.l ├── 0500_ftv2_sender_restarts.c.l ├── 0600_ftv2_use_tor_sender_stops_iterating.c.l ├── 1100_tox_local_lan_only_test.c ├── 1110_tox_local_lan_only_test.c ├── 1200_tox_udp_connection_test.c ├── 1210_tox_udp_connection_test.c ├── 2100_toxav_ts_sync_test.c ├── 2110_toxav_ts_sync_test.c ├── 2200_toxav_msi_stress_test.c ├── 3000_tox_ngc_mute_peer_test_01.c.l └── 3100_tox_ngc_mute_peer_test_02.c.l_disabled ├── docs ├── Doxyfile ├── Group-Chats.md ├── Hardening.txt ├── Hardening_docs.txt ├── Prevent_Tracking.txt ├── TCP_Network.txt ├── Tox_middle_level_network_protocol.txt ├── apidsl.md ├── av_api.md ├── filetransfer_v2.md ├── filetransfer_v2a.md ├── message_v2.md ├── message_v3.md ├── message_v3_alternate_docs.md ├── minpgc.md ├── msgv3_addon.patch ├── ngc_audio.md ├── ngc_filetransfer.md ├── ngc_group_history_sync.md ├── ngc_usernames_spec.md ├── ngc_video_v1.md ├── ngc_video_v2.md ├── resumeable_ft_v2_poc.diff ├── toxav_threading.md └── updates │ ├── Crypto.md │ ├── DHT.md │ ├── Spam-Prevention.md │ └── Symmetric-NAT-Transversal.md ├── heroku.yml ├── libtoxav.pc.in ├── libtoxcore.pc.in ├── m4 ├── ax_have_epoll.m4 ├── ax_pthread.m4 └── pkg.m4 ├── netlify.toml ├── other ├── BUILD.bazel ├── DHT_bootstrap.c ├── DHTnodes ├── Makefile.inc ├── analysis │ ├── check_includes │ ├── check_logger_levels │ ├── gen-file.sh │ ├── run-clang │ ├── run-clang-analyze │ ├── run-clang-tidy │ ├── run-cppcheck │ ├── run-cpplint │ ├── run-gcc │ ├── run-infer │ └── variants.sh ├── astyle │ ├── README.md │ ├── astylerc │ ├── format-source │ └── pre-commit ├── bootstrap_daemon │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── README.md │ ├── bash-completion │ │ └── completions │ │ │ └── tox-bootstrapd │ ├── docker │ │ ├── Dockerfile │ │ ├── get-nodes.py │ │ ├── tox-bootstrapd.sha256 │ │ └── update-sha256 │ ├── src │ │ ├── Makefile.inc │ │ ├── command_line_arguments.c │ │ ├── command_line_arguments.h │ │ ├── config.c │ │ ├── config.h │ │ ├── config_defaults.h │ │ ├── global.h │ │ ├── log.c │ │ ├── log.h │ │ ├── log_backend_stdout.c │ │ ├── log_backend_stdout.h │ │ ├── log_backend_syslog.c │ │ ├── log_backend_syslog.h │ │ └── tox-bootstrapd.c │ ├── tox-bootstrapd.conf │ ├── tox-bootstrapd.service │ ├── tox-bootstrapd.sh │ └── websocket │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── keys │ │ └── websockify │ │ ├── BUILD.bazel │ │ ├── go.mod │ │ └── websockify.go ├── bootstrap_node_packets.c ├── bootstrap_node_packets.h ├── docker │ ├── autotools │ │ ├── Dockerfile │ │ └── run │ ├── cimplefmt │ │ ├── Dockerfile │ │ └── run │ ├── circleci │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ └── run │ ├── coverage │ │ ├── Dockerfile │ │ ├── mallocfail.h │ │ ├── run │ │ ├── run_mallocfail │ │ └── syscall_funcs.c │ ├── doxygen │ │ ├── Dockerfile │ │ └── run │ ├── esp32 │ │ ├── CMakeLists.txt │ │ ├── Dockerfile │ │ ├── hello │ │ │ ├── CMakeLists.txt │ │ │ └── hello_main.c │ │ ├── run │ │ └── toxcore │ │ │ ├── CMakeLists.txt │ │ │ └── toxcore_main.cc │ ├── misra │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ └── run │ ├── perf │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ └── run │ ├── pkgsrc │ │ └── pkgsrc.Dockerfile │ ├── sources │ │ └── Dockerfile │ ├── tcc │ │ ├── Dockerfile │ │ └── run │ ├── tokstyle │ │ ├── Dockerfile │ │ └── run │ └── windows │ │ ├── Dockerfile │ │ ├── build_dependencies.sh │ │ ├── build_toxcore.sh │ │ └── get_packages.sh ├── emscripten │ ├── Dockerfile │ └── build ├── fun │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── bootstrap_node_info.py │ ├── cracker.c │ ├── cracker_simple.c │ ├── create_bootstrap_keys.c │ ├── create_common.h │ ├── create_minimal_savedata.c │ ├── create_savedata.c │ ├── make-funny-savefile.py │ ├── save-generator.c │ ├── sign.c │ └── strkey.c ├── make_single_file ├── osx_build_script_toxcore.sh ├── pkgconfig │ └── toxcore.pc.in ├── print-version ├── proxy │ ├── BUILD.bazel │ ├── go.mod │ ├── go.sum │ └── proxy_server.go ├── rpm │ ├── Makefile │ ├── tox-bootstrapd.service │ └── toxcore.spec.in ├── tox-warning.png ├── tox.png ├── version-sync └── windows_build_script_toxcore.sh ├── so.version ├── sonar-project.properties ├── super_donators ├── BUILD.bazel ├── LittleVulpix ├── grencez_tok5.c └── sir@cmpwn.com ├── testing ├── BUILD.bazel ├── CMakeLists.txt ├── Dockerfile ├── Makefile.inc ├── Messenger_test.c ├── afl_testdata │ └── tox_saves │ │ └── david.tox ├── coverage_live.sh ├── distill_corpus.sh ├── fuzzing │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── bootstrap_harness.cc │ ├── e2e_fuzz_test.cc │ ├── func_conversion.h │ ├── fuzz_support.cc │ ├── fuzz_support.h │ ├── fuzz_tox.h │ ├── protodump.cc │ ├── protodump_reduce.cc │ └── toxsave_harness.cc ├── misc_tools.c ├── misc_tools.h └── run_afl.sh ├── third_party ├── BUILD.bazel ├── README.md └── cmp │ ├── .gitignore │ ├── CMakeLists.txt │ ├── cmp.c │ └── cmp.h ├── tox.spec.in ├── toxav ├── BUILD.bazel ├── Makefile.inc ├── audio.c ├── audio.h ├── bwcontroller.c ├── bwcontroller.h ├── codecs │ ├── h264 │ │ └── codec.c │ ├── toxav_codecs.h │ └── vpx │ │ └── codec.c ├── dummy_ntp.c ├── dummy_ntp.h ├── groupav.c ├── groupav.h ├── msi.c ├── msi.h ├── ring_buffer.c ├── ring_buffer.h ├── ring_buffer_test.cc ├── rtp.c ├── rtp.h ├── rtp_test.cc ├── tox_generic.h ├── toxav.api.h ├── toxav.c ├── toxav.h ├── toxav_hacks.h ├── toxav_old.c ├── ts_buffer.c ├── ts_buffer.h ├── video.c └── video.h ├── toxcore ├── BUILD.bazel ├── DHT.c ├── DHT.h ├── DHT_fuzz_test.cc ├── DHT_test.cc ├── LAN_discovery.c ├── LAN_discovery.h ├── Makefile.inc ├── Messenger.c ├── Messenger.h ├── TCP_client.c ├── TCP_client.h ├── TCP_common.c ├── TCP_common.h ├── TCP_connection.c ├── TCP_connection.h ├── TCP_connection_test.cc ├── TCP_server.c ├── TCP_server.h ├── announce.c ├── announce.h ├── attributes.h ├── bin_pack.c ├── bin_pack.h ├── bin_pack_test.cc ├── bin_unpack.c ├── bin_unpack.h ├── ccompat.c ├── ccompat.h ├── crypto_core.c ├── crypto_core.h ├── crypto_core_test.cc ├── events │ ├── conference_connected.c │ ├── conference_invite.c │ ├── conference_message.c │ ├── conference_peer_list_changed.c │ ├── conference_peer_name.c │ ├── conference_title.c │ ├── events_alloc.c │ ├── events_alloc.h │ ├── file_chunk_request.c │ ├── file_recv.c │ ├── file_recv_chunk.c │ ├── file_recv_control.c │ ├── friend_connection_status.c │ ├── friend_lossless_packet.c │ ├── friend_lossy_packet.c │ ├── friend_message.c │ ├── friend_name.c │ ├── friend_read_receipt.c │ ├── friend_request.c │ ├── friend_status.c │ ├── friend_status_message.c │ ├── friend_typing.c │ └── self_connection_status.c ├── forwarding.c ├── forwarding.h ├── forwarding_fuzz_test.cc ├── friend_connection.c ├── friend_connection.h ├── friend_connection_test.cc ├── friend_requests.c ├── friend_requests.h ├── group.c ├── group.h ├── group_announce.c ├── group_announce.h ├── group_announce_fuzz_test.cc ├── group_announce_test.cc ├── group_chats.c ├── group_chats.h ├── group_common.h ├── group_connection.c ├── group_connection.h ├── group_moderation.c ├── group_moderation.h ├── group_moderation_fuzz_test.cc ├── group_moderation_test.cc ├── group_onion_announce.c ├── group_onion_announce.h ├── group_pack.c ├── group_pack.h ├── list.c ├── list.h ├── list_test.cc ├── logger.c ├── logger.h ├── mono_time.c ├── mono_time.h ├── mono_time_test.cc ├── net_crypto.c ├── net_crypto.h ├── network.c ├── network.h ├── network_test.cc ├── 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 ├── ping_array_test.cc ├── shared_key_cache.c ├── shared_key_cache.h ├── state.c ├── state.h ├── timed_auth.c ├── timed_auth.h ├── tox.c ├── tox.h ├── tox_api.c ├── tox_dispatch.c ├── tox_dispatch.h ├── tox_events.c ├── tox_events.h ├── tox_events_fuzz_test.cc ├── tox_events_test.cc ├── tox_private.c ├── tox_private.h ├── tox_struct.h ├── tox_test.cc ├── tox_unpack.c ├── tox_unpack.h ├── util.c ├── util.h └── util_test.cc ├── toxencryptsave ├── BUILD.bazel ├── Makefile.inc ├── defines.h ├── toxencryptsave.c └── toxencryptsave.h └── toxutil ├── BUILD.bazel ├── toxutil.c └── toxutil.h /.circleci/build-cross-generic-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.circleci/build-cross-generic-linux -------------------------------------------------------------------------------- /.circleci/cmake-asan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.circleci/cmake-asan -------------------------------------------------------------------------------- /.circleci/cmake-normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.circleci/cmake-normal -------------------------------------------------------------------------------- /.circleci/cmake-tsan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.circleci/cmake-tsan -------------------------------------------------------------------------------- /.circleci/cmake-ubsan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.circleci/cmake-ubsan -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/generate_cross_build_configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.circleci/generate_cross_build_configs.sh -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.clang-format -------------------------------------------------------------------------------- /.clusterfuzzlite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.clusterfuzzlite/Dockerfile -------------------------------------------------------------------------------- /.clusterfuzzlite/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.clusterfuzzlite/build.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/scripts/autotools-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/autotools-linux -------------------------------------------------------------------------------- /.github/scripts/cmake-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/cmake-android -------------------------------------------------------------------------------- /.github/scripts/cmake-freebsd-stage2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/cmake-freebsd-stage2 -------------------------------------------------------------------------------- /.github/scripts/cmake-osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/cmake-osx -------------------------------------------------------------------------------- /.github/scripts/cmake-win32: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | i686=true 4 | x86_64=false 5 | WINDOWS_ARCH=win32 6 | 7 | . .github/scripts/cmake-windows.sh 8 | -------------------------------------------------------------------------------- /.github/scripts/cmake-win64: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | i686=false 4 | x86_64=true 5 | WINDOWS_ARCH=win64 6 | 7 | . .github/scripts/cmake-windows.sh 8 | -------------------------------------------------------------------------------- /.github/scripts/cmake-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/cmake-windows.sh -------------------------------------------------------------------------------- /.github/scripts/coverage-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/coverage-linux -------------------------------------------------------------------------------- /.github/scripts/flags-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/flags-clang.sh -------------------------------------------------------------------------------- /.github/scripts/flags-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/flags-coverage.sh -------------------------------------------------------------------------------- /.github/scripts/flags-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/flags-gcc.sh -------------------------------------------------------------------------------- /.github/scripts/flags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/flags.sh -------------------------------------------------------------------------------- /.github/scripts/sonar-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/sonar-build -------------------------------------------------------------------------------- /.github/scripts/sonar-prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/sonar-prepare -------------------------------------------------------------------------------- /.github/scripts/tox-bootstrapd-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/scripts/tox-bootstrapd-docker -------------------------------------------------------------------------------- /.github/workflows/amalgamation_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/amalgamation_test.yml -------------------------------------------------------------------------------- /.github/workflows/amalgamation_test_win64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/amalgamation_test_win64.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/ci_cross_arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/ci_cross_arm64.yml -------------------------------------------------------------------------------- /.github/workflows/ci_cross_generic.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/ci_cross_generic.template -------------------------------------------------------------------------------- /.github/workflows/ci_cross_mips.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/ci_cross_mips.yml -------------------------------------------------------------------------------- /.github/workflows/ci_cross_riscv64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/ci_cross_riscv64.yml -------------------------------------------------------------------------------- /.github/workflows/ci_cross_s390x.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/ci_cross_s390x.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/custom_tests_asan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/custom_tests_asan.yml -------------------------------------------------------------------------------- /.github/workflows/custom_tests_tsan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/custom_tests_tsan.yml -------------------------------------------------------------------------------- /.github/workflows/tcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.github/workflows/tcc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.localrun/.gitignore: -------------------------------------------------------------------------------- 1 | artefacts 2 | script 3 | workspace 4 | -------------------------------------------------------------------------------- /.localrun/Dockerfile_ffl_ub20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/Dockerfile_ffl_ub20 -------------------------------------------------------------------------------- /.localrun/Dockerfile_ub20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/Dockerfile_ub20 -------------------------------------------------------------------------------- /.localrun/generate_amalgamation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/generate_amalgamation.sh -------------------------------------------------------------------------------- /.localrun/run_amalgamation_cpp_test_windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_amalgamation_cpp_test_windows.sh -------------------------------------------------------------------------------- /.localrun/run_amalgamation_test_windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_amalgamation_test_windows.sh -------------------------------------------------------------------------------- /.localrun/run_docker_asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_asan.sh -------------------------------------------------------------------------------- /.localrun/run_docker_asan_fast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_asan_fast.sh -------------------------------------------------------------------------------- /.localrun/run_docker_bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_bazel.sh -------------------------------------------------------------------------------- /.localrun/run_docker_cross_custom_tests_fast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_cross_custom_tests_fast.sh -------------------------------------------------------------------------------- /.localrun/run_docker_custom_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_custom_tests.sh -------------------------------------------------------------------------------- /.localrun/run_docker_custom_tests_fast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_custom_tests_fast.sh -------------------------------------------------------------------------------- /.localrun/run_docker_custom_tests_fast_tsan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_custom_tests_fast_tsan.sh -------------------------------------------------------------------------------- /.localrun/run_docker_msan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_msan.sh -------------------------------------------------------------------------------- /.localrun/run_docker_normal__alpine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_normal__alpine.sh -------------------------------------------------------------------------------- /.localrun/run_docker_s390x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_s390x.sh -------------------------------------------------------------------------------- /.localrun/run_docker_tsan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_tsan.sh -------------------------------------------------------------------------------- /.localrun/run_docker_tsan_fast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_docker_tsan_fast.sh -------------------------------------------------------------------------------- /.localrun/run_tcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.localrun/run_tcc.sh -------------------------------------------------------------------------------- /.restyled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/.restyled.yaml -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DONATORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/DONATORS -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/README.md -------------------------------------------------------------------------------- /amalgamation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/amalgamation/.gitignore -------------------------------------------------------------------------------- /amalgamation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/amalgamation/Makefile -------------------------------------------------------------------------------- /amalgamation/amalgamation_cpp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/amalgamation/amalgamation_cpp_test.cpp -------------------------------------------------------------------------------- /amalgamation/amalgamation_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/amalgamation/amalgamation_test.c -------------------------------------------------------------------------------- /amalgamation/toxcore_amalgamation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/amalgamation/toxcore_amalgamation.c -------------------------------------------------------------------------------- /amalgamation/toxcore_amalgamation_no_toxav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/amalgamation/toxcore_amalgamation_no_toxav.c -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/appveyor.yml -------------------------------------------------------------------------------- /auto_tests/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/BUILD.bazel -------------------------------------------------------------------------------- /auto_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/CMakeLists.txt -------------------------------------------------------------------------------- /auto_tests/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/Makefile.inc -------------------------------------------------------------------------------- /auto_tests/TCP_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/TCP_test.c -------------------------------------------------------------------------------- /auto_tests/announce_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/announce_test.c -------------------------------------------------------------------------------- /auto_tests/auto_test_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/auto_test_support.c -------------------------------------------------------------------------------- /auto_tests/auto_test_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/auto_test_support.h -------------------------------------------------------------------------------- /auto_tests/bootstrap_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/bootstrap_test.c -------------------------------------------------------------------------------- /auto_tests/check_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/check_compat.h -------------------------------------------------------------------------------- /auto_tests/conference_av_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/conference_av_test.c -------------------------------------------------------------------------------- /auto_tests/conference_double_invite_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/conference_double_invite_test.c -------------------------------------------------------------------------------- /auto_tests/conference_invite_merge_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/conference_invite_merge_test.c -------------------------------------------------------------------------------- /auto_tests/conference_peer_nick_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/conference_peer_nick_test.c -------------------------------------------------------------------------------- /auto_tests/conference_simple_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/conference_simple_test.c -------------------------------------------------------------------------------- /auto_tests/conference_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/conference_test.c -------------------------------------------------------------------------------- /auto_tests/conference_two_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/conference_two_test.c -------------------------------------------------------------------------------- /auto_tests/crypto_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/crypto_test.c -------------------------------------------------------------------------------- /auto_tests/data/save.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/data/save.tox -------------------------------------------------------------------------------- /auto_tests/dht_getnodes_api_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/dht_getnodes_api_test.c -------------------------------------------------------------------------------- /auto_tests/encryptsave_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/encryptsave_test.c -------------------------------------------------------------------------------- /auto_tests/file_saving_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/file_saving_test.c -------------------------------------------------------------------------------- /auto_tests/file_transfer_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/file_transfer_test.c -------------------------------------------------------------------------------- /auto_tests/forwarding_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/forwarding_test.c -------------------------------------------------------------------------------- /auto_tests/friend_connection_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/friend_connection_test.c -------------------------------------------------------------------------------- /auto_tests/friend_request_spam_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/friend_request_spam_test.c -------------------------------------------------------------------------------- /auto_tests/friend_request_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/friend_request_test.c -------------------------------------------------------------------------------- /auto_tests/group_general_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/group_general_test.c -------------------------------------------------------------------------------- /auto_tests/group_invite_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/group_invite_test.c -------------------------------------------------------------------------------- /auto_tests/group_message_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/group_message_test.c -------------------------------------------------------------------------------- /auto_tests/group_moderation_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/group_moderation_test.c -------------------------------------------------------------------------------- /auto_tests/group_save_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/group_save_test.c -------------------------------------------------------------------------------- /auto_tests/group_state_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/group_state_test.c -------------------------------------------------------------------------------- /auto_tests/group_sync_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/group_sync_test.c -------------------------------------------------------------------------------- /auto_tests/group_tcp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/group_tcp_test.c -------------------------------------------------------------------------------- /auto_tests/group_topic_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/group_topic_test.c -------------------------------------------------------------------------------- /auto_tests/invalid_tcp_proxy_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/invalid_tcp_proxy_test.c -------------------------------------------------------------------------------- /auto_tests/invalid_udp_proxy_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/invalid_udp_proxy_test.c -------------------------------------------------------------------------------- /auto_tests/lan_discovery_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/lan_discovery_test.c -------------------------------------------------------------------------------- /auto_tests/lossless_packet_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/lossless_packet_test.c -------------------------------------------------------------------------------- /auto_tests/lossy_packet_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/lossy_packet_test.c -------------------------------------------------------------------------------- /auto_tests/network_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/network_test.c -------------------------------------------------------------------------------- /auto_tests/onion_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/onion_test.c -------------------------------------------------------------------------------- /auto_tests/overflow_recvq_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/overflow_recvq_test.c -------------------------------------------------------------------------------- /auto_tests/overflow_sendq_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/overflow_sendq_test.c -------------------------------------------------------------------------------- /auto_tests/proxy_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/proxy_test.c -------------------------------------------------------------------------------- /auto_tests/reconnect_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/reconnect_test.c -------------------------------------------------------------------------------- /auto_tests/save_compatibility_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/save_compatibility_test.c -------------------------------------------------------------------------------- /auto_tests/save_friend_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/save_friend_test.c -------------------------------------------------------------------------------- /auto_tests/save_load_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/save_load_test.c -------------------------------------------------------------------------------- /auto_tests/send_message_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/send_message_test.c -------------------------------------------------------------------------------- /auto_tests/set_name_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/set_name_test.c -------------------------------------------------------------------------------- /auto_tests/set_status_message_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/set_status_message_test.c -------------------------------------------------------------------------------- /auto_tests/tcp_relay_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/tcp_relay_test.c -------------------------------------------------------------------------------- /auto_tests/tox_dispatch_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/tox_dispatch_test.c -------------------------------------------------------------------------------- /auto_tests/tox_events_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/tox_events_test.c -------------------------------------------------------------------------------- /auto_tests/tox_many_tcp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/tox_many_tcp_test.c -------------------------------------------------------------------------------- /auto_tests/tox_many_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/tox_many_test.c -------------------------------------------------------------------------------- /auto_tests/tox_strncasecmp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/tox_strncasecmp_test.c -------------------------------------------------------------------------------- /auto_tests/toxav_basic_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/toxav_basic_test.c -------------------------------------------------------------------------------- /auto_tests/toxav_many_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/toxav_many_test.c -------------------------------------------------------------------------------- /auto_tests/typing_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/typing_test.c -------------------------------------------------------------------------------- /auto_tests/version_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/auto_tests/version_test.c -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/autogen.sh -------------------------------------------------------------------------------- /cmake/CompileGTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cmake/CompileGTest.cmake -------------------------------------------------------------------------------- /cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /cmake/MacRpath.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cmake/MacRpath.cmake -------------------------------------------------------------------------------- /cmake/ModulePackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cmake/ModulePackage.cmake -------------------------------------------------------------------------------- /cmake/StrictAbi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cmake/StrictAbi.cmake -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/codecov.yml -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/conanfile.py -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure.ac -------------------------------------------------------------------------------- /configure_aux/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure_aux/ar-lib -------------------------------------------------------------------------------- /configure_aux/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure_aux/compile -------------------------------------------------------------------------------- /configure_aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure_aux/config.guess -------------------------------------------------------------------------------- /configure_aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure_aux/config.sub -------------------------------------------------------------------------------- /configure_aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure_aux/depcomp -------------------------------------------------------------------------------- /configure_aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure_aux/install-sh -------------------------------------------------------------------------------- /configure_aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure_aux/ltmain.sh -------------------------------------------------------------------------------- /configure_aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure_aux/missing -------------------------------------------------------------------------------- /configure_aux/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/configure_aux/test-driver -------------------------------------------------------------------------------- /cross_custom_tests/0010_tox_ngc_large_incoming_custom_packets/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cross_custom_tests/0010_tox_ngc_large_incoming_custom_packets/test.sh -------------------------------------------------------------------------------- /cross_custom_tests/0010_tox_ngc_large_incoming_custom_packets/toktok_receiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cross_custom_tests/0010_tox_ngc_large_incoming_custom_packets/toktok_receiver.c -------------------------------------------------------------------------------- /cross_custom_tests/0010_tox_ngc_large_incoming_custom_packets/z_sender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cross_custom_tests/0010_tox_ngc_large_incoming_custom_packets/z_sender.c -------------------------------------------------------------------------------- /cross_custom_tests/0020_tox_vpx_large_pkts_send/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cross_custom_tests/0020_tox_vpx_large_pkts_send/test.sh -------------------------------------------------------------------------------- /cross_custom_tests/0020_tox_vpx_large_pkts_send/toktok_receiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cross_custom_tests/0020_tox_vpx_large_pkts_send/toktok_receiver.c -------------------------------------------------------------------------------- /cross_custom_tests/0020_tox_vpx_large_pkts_send/z_sender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/cross_custom_tests/0020_tox_vpx_large_pkts_send/z_sender.c -------------------------------------------------------------------------------- /custom_tests/0005_tox_local_lan_only_127001_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0005_tox_local_lan_only_127001_test.c -------------------------------------------------------------------------------- /custom_tests/0007_tox_util_tests_01.c.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0007_tox_util_tests_01.c.l -------------------------------------------------------------------------------- /custom_tests/0009_tox_ngc_encode_decode_video_test_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0009_tox_ngc_encode_decode_video_test_01.c -------------------------------------------------------------------------------- /custom_tests/0090_ftv2_speed_test_tcp.c.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0090_ftv2_speed_test_tcp.c.l -------------------------------------------------------------------------------- /custom_tests/0095_ftv2_speed_test_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0095_ftv2_speed_test_udp.c -------------------------------------------------------------------------------- /custom_tests/0098_ftv2_speed_test_tor_tcp.c.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0098_ftv2_speed_test_tor_tcp.c.l -------------------------------------------------------------------------------- /custom_tests/0100_ftv2_sender_stops_iterating.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0100_ftv2_sender_stops_iterating.c -------------------------------------------------------------------------------- /custom_tests/0200_ftv2_receiver_stops_iterating.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0200_ftv2_receiver_stops_iterating.c -------------------------------------------------------------------------------- /custom_tests/0300_ftv2_send_more_files_at_same_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0300_ftv2_send_more_files_at_same_time.c -------------------------------------------------------------------------------- /custom_tests/0302_ftv2_send_many_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0302_ftv2_send_many_files.c -------------------------------------------------------------------------------- /custom_tests/0304_ftv2a_check_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0304_ftv2a_check_udp.c -------------------------------------------------------------------------------- /custom_tests/0306_ftv2a_check_2_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0306_ftv2a_check_2_udp.c -------------------------------------------------------------------------------- /custom_tests/0400_ftv2_receiver_restarts.c.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0400_ftv2_receiver_restarts.c.l -------------------------------------------------------------------------------- /custom_tests/0500_ftv2_sender_restarts.c.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0500_ftv2_sender_restarts.c.l -------------------------------------------------------------------------------- /custom_tests/0600_ftv2_use_tor_sender_stops_iterating.c.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/0600_ftv2_use_tor_sender_stops_iterating.c.l -------------------------------------------------------------------------------- /custom_tests/1100_tox_local_lan_only_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/1100_tox_local_lan_only_test.c -------------------------------------------------------------------------------- /custom_tests/1110_tox_local_lan_only_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/1110_tox_local_lan_only_test.c -------------------------------------------------------------------------------- /custom_tests/1200_tox_udp_connection_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/1200_tox_udp_connection_test.c -------------------------------------------------------------------------------- /custom_tests/1210_tox_udp_connection_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/1210_tox_udp_connection_test.c -------------------------------------------------------------------------------- /custom_tests/2100_toxav_ts_sync_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/2100_toxav_ts_sync_test.c -------------------------------------------------------------------------------- /custom_tests/2110_toxav_ts_sync_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/2110_toxav_ts_sync_test.c -------------------------------------------------------------------------------- /custom_tests/2200_toxav_msi_stress_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/2200_toxav_msi_stress_test.c -------------------------------------------------------------------------------- /custom_tests/3000_tox_ngc_mute_peer_test_01.c.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/3000_tox_ngc_mute_peer_test_01.c.l -------------------------------------------------------------------------------- /custom_tests/3100_tox_ngc_mute_peer_test_02.c.l_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/custom_tests/3100_tox_ngc_mute_peer_test_02.c.l_disabled -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Group-Chats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/Group-Chats.md -------------------------------------------------------------------------------- /docs/Hardening.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/Hardening.txt -------------------------------------------------------------------------------- /docs/Hardening_docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/Hardening_docs.txt -------------------------------------------------------------------------------- /docs/Prevent_Tracking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/Prevent_Tracking.txt -------------------------------------------------------------------------------- /docs/TCP_Network.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/TCP_Network.txt -------------------------------------------------------------------------------- /docs/Tox_middle_level_network_protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/Tox_middle_level_network_protocol.txt -------------------------------------------------------------------------------- /docs/apidsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/apidsl.md -------------------------------------------------------------------------------- /docs/av_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/av_api.md -------------------------------------------------------------------------------- /docs/filetransfer_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/filetransfer_v2.md -------------------------------------------------------------------------------- /docs/filetransfer_v2a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/filetransfer_v2a.md -------------------------------------------------------------------------------- /docs/message_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/message_v2.md -------------------------------------------------------------------------------- /docs/message_v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/message_v3.md -------------------------------------------------------------------------------- /docs/message_v3_alternate_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/message_v3_alternate_docs.md -------------------------------------------------------------------------------- /docs/minpgc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/minpgc.md -------------------------------------------------------------------------------- /docs/msgv3_addon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/msgv3_addon.patch -------------------------------------------------------------------------------- /docs/ngc_audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/ngc_audio.md -------------------------------------------------------------------------------- /docs/ngc_filetransfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/ngc_filetransfer.md -------------------------------------------------------------------------------- /docs/ngc_group_history_sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/ngc_group_history_sync.md -------------------------------------------------------------------------------- /docs/ngc_usernames_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/ngc_usernames_spec.md -------------------------------------------------------------------------------- /docs/ngc_video_v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/ngc_video_v1.md -------------------------------------------------------------------------------- /docs/ngc_video_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/ngc_video_v2.md -------------------------------------------------------------------------------- /docs/resumeable_ft_v2_poc.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/resumeable_ft_v2_poc.diff -------------------------------------------------------------------------------- /docs/toxav_threading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/toxav_threading.md -------------------------------------------------------------------------------- /docs/updates/Crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/updates/Crypto.md -------------------------------------------------------------------------------- /docs/updates/DHT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/updates/DHT.md -------------------------------------------------------------------------------- /docs/updates/Spam-Prevention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/updates/Spam-Prevention.md -------------------------------------------------------------------------------- /docs/updates/Symmetric-NAT-Transversal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/docs/updates/Symmetric-NAT-Transversal.md -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/heroku.yml -------------------------------------------------------------------------------- /libtoxav.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/libtoxav.pc.in -------------------------------------------------------------------------------- /libtoxcore.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/libtoxcore.pc.in -------------------------------------------------------------------------------- /m4/ax_have_epoll.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/m4/ax_have_epoll.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/netlify.toml -------------------------------------------------------------------------------- /other/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/BUILD.bazel -------------------------------------------------------------------------------- /other/DHT_bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/DHT_bootstrap.c -------------------------------------------------------------------------------- /other/DHTnodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/DHTnodes -------------------------------------------------------------------------------- /other/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/Makefile.inc -------------------------------------------------------------------------------- /other/analysis/check_includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/analysis/check_includes -------------------------------------------------------------------------------- /other/analysis/check_logger_levels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/analysis/check_logger_levels -------------------------------------------------------------------------------- /other/analysis/gen-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/analysis/gen-file.sh -------------------------------------------------------------------------------- /other/analysis/run-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/analysis/run-clang -------------------------------------------------------------------------------- /other/analysis/run-clang-analyze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/analysis/run-clang-analyze -------------------------------------------------------------------------------- /other/analysis/run-clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/analysis/run-clang-tidy -------------------------------------------------------------------------------- /other/analysis/run-cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/analysis/run-cppcheck -------------------------------------------------------------------------------- /other/analysis/run-cpplint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/analysis/run-cpplint -------------------------------------------------------------------------------- /other/analysis/run-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/analysis/run-gcc -------------------------------------------------------------------------------- /other/analysis/run-infer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/analysis/run-infer -------------------------------------------------------------------------------- /other/analysis/variants.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | run 4 | -------------------------------------------------------------------------------- /other/astyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/astyle/README.md -------------------------------------------------------------------------------- /other/astyle/astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/astyle/astylerc -------------------------------------------------------------------------------- /other/astyle/format-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/astyle/format-source -------------------------------------------------------------------------------- /other/astyle/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/astyle/pre-commit -------------------------------------------------------------------------------- /other/bootstrap_daemon/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/BUILD.bazel -------------------------------------------------------------------------------- /other/bootstrap_daemon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/CMakeLists.txt -------------------------------------------------------------------------------- /other/bootstrap_daemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/README.md -------------------------------------------------------------------------------- /other/bootstrap_daemon/bash-completion/completions/tox-bootstrapd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/bash-completion/completions/tox-bootstrapd -------------------------------------------------------------------------------- /other/bootstrap_daemon/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/docker/Dockerfile -------------------------------------------------------------------------------- /other/bootstrap_daemon/docker/get-nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/docker/get-nodes.py -------------------------------------------------------------------------------- /other/bootstrap_daemon/docker/tox-bootstrapd.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/docker/tox-bootstrapd.sha256 -------------------------------------------------------------------------------- /other/bootstrap_daemon/docker/update-sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/docker/update-sha256 -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/Makefile.inc -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/command_line_arguments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/command_line_arguments.c -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/command_line_arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/command_line_arguments.h -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/config.c -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/config.h -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/config_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/config_defaults.h -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/global.h -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/log.c -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/log.h -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/log_backend_stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/log_backend_stdout.c -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/log_backend_stdout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/log_backend_stdout.h -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/log_backend_syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/log_backend_syslog.c -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/log_backend_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/log_backend_syslog.h -------------------------------------------------------------------------------- /other/bootstrap_daemon/src/tox-bootstrapd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/src/tox-bootstrapd.c -------------------------------------------------------------------------------- /other/bootstrap_daemon/tox-bootstrapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/tox-bootstrapd.conf -------------------------------------------------------------------------------- /other/bootstrap_daemon/tox-bootstrapd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/tox-bootstrapd.service -------------------------------------------------------------------------------- /other/bootstrap_daemon/tox-bootstrapd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/tox-bootstrapd.sh -------------------------------------------------------------------------------- /other/bootstrap_daemon/websocket/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/websocket/Dockerfile -------------------------------------------------------------------------------- /other/bootstrap_daemon/websocket/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/websocket/entrypoint.sh -------------------------------------------------------------------------------- /other/bootstrap_daemon/websocket/keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/websocket/keys -------------------------------------------------------------------------------- /other/bootstrap_daemon/websocket/websockify/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/websocket/websockify/BUILD.bazel -------------------------------------------------------------------------------- /other/bootstrap_daemon/websocket/websockify/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/websocket/websockify/go.mod -------------------------------------------------------------------------------- /other/bootstrap_daemon/websocket/websockify/websockify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_daemon/websocket/websockify/websockify.go -------------------------------------------------------------------------------- /other/bootstrap_node_packets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_node_packets.c -------------------------------------------------------------------------------- /other/bootstrap_node_packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/bootstrap_node_packets.h -------------------------------------------------------------------------------- /other/docker/autotools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/autotools/Dockerfile -------------------------------------------------------------------------------- /other/docker/autotools/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/autotools/run -------------------------------------------------------------------------------- /other/docker/cimplefmt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/cimplefmt/Dockerfile -------------------------------------------------------------------------------- /other/docker/cimplefmt/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/cimplefmt/run -------------------------------------------------------------------------------- /other/docker/circleci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/circleci/Dockerfile -------------------------------------------------------------------------------- /other/docker/circleci/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/circleci/entrypoint.sh -------------------------------------------------------------------------------- /other/docker/circleci/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/circleci/run -------------------------------------------------------------------------------- /other/docker/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/coverage/Dockerfile -------------------------------------------------------------------------------- /other/docker/coverage/mallocfail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/coverage/mallocfail.h -------------------------------------------------------------------------------- /other/docker/coverage/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/coverage/run -------------------------------------------------------------------------------- /other/docker/coverage/run_mallocfail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/coverage/run_mallocfail -------------------------------------------------------------------------------- /other/docker/coverage/syscall_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/coverage/syscall_funcs.c -------------------------------------------------------------------------------- /other/docker/doxygen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/doxygen/Dockerfile -------------------------------------------------------------------------------- /other/docker/doxygen/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/doxygen/run -------------------------------------------------------------------------------- /other/docker/esp32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/esp32/CMakeLists.txt -------------------------------------------------------------------------------- /other/docker/esp32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/esp32/Dockerfile -------------------------------------------------------------------------------- /other/docker/esp32/hello/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/esp32/hello/CMakeLists.txt -------------------------------------------------------------------------------- /other/docker/esp32/hello/hello_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/esp32/hello/hello_main.c -------------------------------------------------------------------------------- /other/docker/esp32/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/esp32/run -------------------------------------------------------------------------------- /other/docker/esp32/toxcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/esp32/toxcore/CMakeLists.txt -------------------------------------------------------------------------------- /other/docker/esp32/toxcore/toxcore_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/esp32/toxcore/toxcore_main.cc -------------------------------------------------------------------------------- /other/docker/misra/.gitignore: -------------------------------------------------------------------------------- 1 | !/Makefile 2 | -------------------------------------------------------------------------------- /other/docker/misra/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/misra/Dockerfile -------------------------------------------------------------------------------- /other/docker/misra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/misra/Makefile -------------------------------------------------------------------------------- /other/docker/misra/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/misra/run -------------------------------------------------------------------------------- /other/docker/perf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/perf/Dockerfile -------------------------------------------------------------------------------- /other/docker/perf/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/perf/entrypoint.sh -------------------------------------------------------------------------------- /other/docker/perf/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/perf/run -------------------------------------------------------------------------------- /other/docker/pkgsrc/pkgsrc.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/pkgsrc/pkgsrc.Dockerfile -------------------------------------------------------------------------------- /other/docker/sources/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/sources/Dockerfile -------------------------------------------------------------------------------- /other/docker/tcc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/tcc/Dockerfile -------------------------------------------------------------------------------- /other/docker/tcc/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/tcc/run -------------------------------------------------------------------------------- /other/docker/tokstyle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/tokstyle/Dockerfile -------------------------------------------------------------------------------- /other/docker/tokstyle/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/tokstyle/run -------------------------------------------------------------------------------- /other/docker/windows/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/windows/Dockerfile -------------------------------------------------------------------------------- /other/docker/windows/build_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/windows/build_dependencies.sh -------------------------------------------------------------------------------- /other/docker/windows/build_toxcore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/windows/build_toxcore.sh -------------------------------------------------------------------------------- /other/docker/windows/get_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/docker/windows/get_packages.sh -------------------------------------------------------------------------------- /other/emscripten/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/emscripten/Dockerfile -------------------------------------------------------------------------------- /other/emscripten/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/emscripten/build -------------------------------------------------------------------------------- /other/fun/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/BUILD.bazel -------------------------------------------------------------------------------- /other/fun/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/CMakeLists.txt -------------------------------------------------------------------------------- /other/fun/bootstrap_node_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/bootstrap_node_info.py -------------------------------------------------------------------------------- /other/fun/cracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/cracker.c -------------------------------------------------------------------------------- /other/fun/cracker_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/cracker_simple.c -------------------------------------------------------------------------------- /other/fun/create_bootstrap_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/create_bootstrap_keys.c -------------------------------------------------------------------------------- /other/fun/create_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/create_common.h -------------------------------------------------------------------------------- /other/fun/create_minimal_savedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/create_minimal_savedata.c -------------------------------------------------------------------------------- /other/fun/create_savedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/create_savedata.c -------------------------------------------------------------------------------- /other/fun/make-funny-savefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/make-funny-savefile.py -------------------------------------------------------------------------------- /other/fun/save-generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/save-generator.c -------------------------------------------------------------------------------- /other/fun/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/sign.c -------------------------------------------------------------------------------- /other/fun/strkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/fun/strkey.c -------------------------------------------------------------------------------- /other/make_single_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/make_single_file -------------------------------------------------------------------------------- /other/osx_build_script_toxcore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/osx_build_script_toxcore.sh -------------------------------------------------------------------------------- /other/pkgconfig/toxcore.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/pkgconfig/toxcore.pc.in -------------------------------------------------------------------------------- /other/print-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/print-version -------------------------------------------------------------------------------- /other/proxy/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/proxy/BUILD.bazel -------------------------------------------------------------------------------- /other/proxy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/proxy/go.mod -------------------------------------------------------------------------------- /other/proxy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/proxy/go.sum -------------------------------------------------------------------------------- /other/proxy/proxy_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/proxy/proxy_server.go -------------------------------------------------------------------------------- /other/rpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/rpm/Makefile -------------------------------------------------------------------------------- /other/rpm/tox-bootstrapd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/rpm/tox-bootstrapd.service -------------------------------------------------------------------------------- /other/rpm/toxcore.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/rpm/toxcore.spec.in -------------------------------------------------------------------------------- /other/tox-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/tox-warning.png -------------------------------------------------------------------------------- /other/tox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/tox.png -------------------------------------------------------------------------------- /other/version-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/version-sync -------------------------------------------------------------------------------- /other/windows_build_script_toxcore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/other/windows_build_script_toxcore.sh -------------------------------------------------------------------------------- /so.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/so.version -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /super_donators/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/super_donators/BUILD.bazel -------------------------------------------------------------------------------- /super_donators/LittleVulpix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/super_donators/LittleVulpix -------------------------------------------------------------------------------- /super_donators/grencez_tok5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/super_donators/grencez_tok5.c -------------------------------------------------------------------------------- /super_donators/sir@cmpwn.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/super_donators/sir@cmpwn.com -------------------------------------------------------------------------------- /testing/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/BUILD.bazel -------------------------------------------------------------------------------- /testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/CMakeLists.txt -------------------------------------------------------------------------------- /testing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/Dockerfile -------------------------------------------------------------------------------- /testing/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/Makefile.inc -------------------------------------------------------------------------------- /testing/Messenger_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/Messenger_test.c -------------------------------------------------------------------------------- /testing/afl_testdata/tox_saves/david.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/afl_testdata/tox_saves/david.tox -------------------------------------------------------------------------------- /testing/coverage_live.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/coverage_live.sh -------------------------------------------------------------------------------- /testing/distill_corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/distill_corpus.sh -------------------------------------------------------------------------------- /testing/fuzzing/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/BUILD.bazel -------------------------------------------------------------------------------- /testing/fuzzing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/CMakeLists.txt -------------------------------------------------------------------------------- /testing/fuzzing/bootstrap_harness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/bootstrap_harness.cc -------------------------------------------------------------------------------- /testing/fuzzing/e2e_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/e2e_fuzz_test.cc -------------------------------------------------------------------------------- /testing/fuzzing/func_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/func_conversion.h -------------------------------------------------------------------------------- /testing/fuzzing/fuzz_support.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/fuzz_support.cc -------------------------------------------------------------------------------- /testing/fuzzing/fuzz_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/fuzz_support.h -------------------------------------------------------------------------------- /testing/fuzzing/fuzz_tox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/fuzz_tox.h -------------------------------------------------------------------------------- /testing/fuzzing/protodump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/protodump.cc -------------------------------------------------------------------------------- /testing/fuzzing/protodump_reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/protodump_reduce.cc -------------------------------------------------------------------------------- /testing/fuzzing/toxsave_harness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/fuzzing/toxsave_harness.cc -------------------------------------------------------------------------------- /testing/misc_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/misc_tools.c -------------------------------------------------------------------------------- /testing/misc_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/misc_tools.h -------------------------------------------------------------------------------- /testing/run_afl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/testing/run_afl.sh -------------------------------------------------------------------------------- /third_party/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/third_party/BUILD.bazel -------------------------------------------------------------------------------- /third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/third_party/README.md -------------------------------------------------------------------------------- /third_party/cmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/third_party/cmp/.gitignore -------------------------------------------------------------------------------- /third_party/cmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/third_party/cmp/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/cmp/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/third_party/cmp/cmp.c -------------------------------------------------------------------------------- /third_party/cmp/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/third_party/cmp/cmp.h -------------------------------------------------------------------------------- /tox.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/tox.spec.in -------------------------------------------------------------------------------- /toxav/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/BUILD.bazel -------------------------------------------------------------------------------- /toxav/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/Makefile.inc -------------------------------------------------------------------------------- /toxav/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/audio.c -------------------------------------------------------------------------------- /toxav/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/audio.h -------------------------------------------------------------------------------- /toxav/bwcontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/bwcontroller.c -------------------------------------------------------------------------------- /toxav/bwcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/bwcontroller.h -------------------------------------------------------------------------------- /toxav/codecs/h264/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/codecs/h264/codec.c -------------------------------------------------------------------------------- /toxav/codecs/toxav_codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/codecs/toxav_codecs.h -------------------------------------------------------------------------------- /toxav/codecs/vpx/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/codecs/vpx/codec.c -------------------------------------------------------------------------------- /toxav/dummy_ntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/dummy_ntp.c -------------------------------------------------------------------------------- /toxav/dummy_ntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/dummy_ntp.h -------------------------------------------------------------------------------- /toxav/groupav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/groupav.c -------------------------------------------------------------------------------- /toxav/groupav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/groupav.h -------------------------------------------------------------------------------- /toxav/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/msi.c -------------------------------------------------------------------------------- /toxav/msi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/msi.h -------------------------------------------------------------------------------- /toxav/ring_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/ring_buffer.c -------------------------------------------------------------------------------- /toxav/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/ring_buffer.h -------------------------------------------------------------------------------- /toxav/ring_buffer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/ring_buffer_test.cc -------------------------------------------------------------------------------- /toxav/rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/rtp.c -------------------------------------------------------------------------------- /toxav/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/rtp.h -------------------------------------------------------------------------------- /toxav/rtp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/rtp_test.cc -------------------------------------------------------------------------------- /toxav/tox_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/tox_generic.h -------------------------------------------------------------------------------- /toxav/toxav.api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/toxav.api.h -------------------------------------------------------------------------------- /toxav/toxav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/toxav.c -------------------------------------------------------------------------------- /toxav/toxav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/toxav.h -------------------------------------------------------------------------------- /toxav/toxav_hacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/toxav_hacks.h -------------------------------------------------------------------------------- /toxav/toxav_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/toxav_old.c -------------------------------------------------------------------------------- /toxav/ts_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/ts_buffer.c -------------------------------------------------------------------------------- /toxav/ts_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/ts_buffer.h -------------------------------------------------------------------------------- /toxav/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/video.c -------------------------------------------------------------------------------- /toxav/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxav/video.h -------------------------------------------------------------------------------- /toxcore/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/BUILD.bazel -------------------------------------------------------------------------------- /toxcore/DHT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/DHT.c -------------------------------------------------------------------------------- /toxcore/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/DHT.h -------------------------------------------------------------------------------- /toxcore/DHT_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/DHT_fuzz_test.cc -------------------------------------------------------------------------------- /toxcore/DHT_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/DHT_test.cc -------------------------------------------------------------------------------- /toxcore/LAN_discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/LAN_discovery.c -------------------------------------------------------------------------------- /toxcore/LAN_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/LAN_discovery.h -------------------------------------------------------------------------------- /toxcore/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/Makefile.inc -------------------------------------------------------------------------------- /toxcore/Messenger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/Messenger.c -------------------------------------------------------------------------------- /toxcore/Messenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/Messenger.h -------------------------------------------------------------------------------- /toxcore/TCP_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/TCP_client.c -------------------------------------------------------------------------------- /toxcore/TCP_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/TCP_client.h -------------------------------------------------------------------------------- /toxcore/TCP_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/TCP_common.c -------------------------------------------------------------------------------- /toxcore/TCP_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/TCP_common.h -------------------------------------------------------------------------------- /toxcore/TCP_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/TCP_connection.c -------------------------------------------------------------------------------- /toxcore/TCP_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/TCP_connection.h -------------------------------------------------------------------------------- /toxcore/TCP_connection_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/TCP_connection_test.cc -------------------------------------------------------------------------------- /toxcore/TCP_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/TCP_server.c -------------------------------------------------------------------------------- /toxcore/TCP_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/TCP_server.h -------------------------------------------------------------------------------- /toxcore/announce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/announce.c -------------------------------------------------------------------------------- /toxcore/announce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/announce.h -------------------------------------------------------------------------------- /toxcore/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/attributes.h -------------------------------------------------------------------------------- /toxcore/bin_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/bin_pack.c -------------------------------------------------------------------------------- /toxcore/bin_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/bin_pack.h -------------------------------------------------------------------------------- /toxcore/bin_pack_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/bin_pack_test.cc -------------------------------------------------------------------------------- /toxcore/bin_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/bin_unpack.c -------------------------------------------------------------------------------- /toxcore/bin_unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/bin_unpack.h -------------------------------------------------------------------------------- /toxcore/ccompat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/ccompat.c -------------------------------------------------------------------------------- /toxcore/ccompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/ccompat.h -------------------------------------------------------------------------------- /toxcore/crypto_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/crypto_core.c -------------------------------------------------------------------------------- /toxcore/crypto_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/crypto_core.h -------------------------------------------------------------------------------- /toxcore/crypto_core_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/crypto_core_test.cc -------------------------------------------------------------------------------- /toxcore/events/conference_connected.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/conference_connected.c -------------------------------------------------------------------------------- /toxcore/events/conference_invite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/conference_invite.c -------------------------------------------------------------------------------- /toxcore/events/conference_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/conference_message.c -------------------------------------------------------------------------------- /toxcore/events/conference_peer_list_changed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/conference_peer_list_changed.c -------------------------------------------------------------------------------- /toxcore/events/conference_peer_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/conference_peer_name.c -------------------------------------------------------------------------------- /toxcore/events/conference_title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/conference_title.c -------------------------------------------------------------------------------- /toxcore/events/events_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/events_alloc.c -------------------------------------------------------------------------------- /toxcore/events/events_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/events_alloc.h -------------------------------------------------------------------------------- /toxcore/events/file_chunk_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/file_chunk_request.c -------------------------------------------------------------------------------- /toxcore/events/file_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/file_recv.c -------------------------------------------------------------------------------- /toxcore/events/file_recv_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/file_recv_chunk.c -------------------------------------------------------------------------------- /toxcore/events/file_recv_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/file_recv_control.c -------------------------------------------------------------------------------- /toxcore/events/friend_connection_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/friend_connection_status.c -------------------------------------------------------------------------------- /toxcore/events/friend_lossless_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/friend_lossless_packet.c -------------------------------------------------------------------------------- /toxcore/events/friend_lossy_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/friend_lossy_packet.c -------------------------------------------------------------------------------- /toxcore/events/friend_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/friend_message.c -------------------------------------------------------------------------------- /toxcore/events/friend_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/friend_name.c -------------------------------------------------------------------------------- /toxcore/events/friend_read_receipt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/friend_read_receipt.c -------------------------------------------------------------------------------- /toxcore/events/friend_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/friend_request.c -------------------------------------------------------------------------------- /toxcore/events/friend_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/friend_status.c -------------------------------------------------------------------------------- /toxcore/events/friend_status_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/friend_status_message.c -------------------------------------------------------------------------------- /toxcore/events/friend_typing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/friend_typing.c -------------------------------------------------------------------------------- /toxcore/events/self_connection_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/events/self_connection_status.c -------------------------------------------------------------------------------- /toxcore/forwarding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/forwarding.c -------------------------------------------------------------------------------- /toxcore/forwarding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/forwarding.h -------------------------------------------------------------------------------- /toxcore/forwarding_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/forwarding_fuzz_test.cc -------------------------------------------------------------------------------- /toxcore/friend_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/friend_connection.c -------------------------------------------------------------------------------- /toxcore/friend_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/friend_connection.h -------------------------------------------------------------------------------- /toxcore/friend_connection_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/friend_connection_test.cc -------------------------------------------------------------------------------- /toxcore/friend_requests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/friend_requests.c -------------------------------------------------------------------------------- /toxcore/friend_requests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/friend_requests.h -------------------------------------------------------------------------------- /toxcore/group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group.c -------------------------------------------------------------------------------- /toxcore/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group.h -------------------------------------------------------------------------------- /toxcore/group_announce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_announce.c -------------------------------------------------------------------------------- /toxcore/group_announce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_announce.h -------------------------------------------------------------------------------- /toxcore/group_announce_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_announce_fuzz_test.cc -------------------------------------------------------------------------------- /toxcore/group_announce_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_announce_test.cc -------------------------------------------------------------------------------- /toxcore/group_chats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_chats.c -------------------------------------------------------------------------------- /toxcore/group_chats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_chats.h -------------------------------------------------------------------------------- /toxcore/group_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_common.h -------------------------------------------------------------------------------- /toxcore/group_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_connection.c -------------------------------------------------------------------------------- /toxcore/group_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_connection.h -------------------------------------------------------------------------------- /toxcore/group_moderation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_moderation.c -------------------------------------------------------------------------------- /toxcore/group_moderation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_moderation.h -------------------------------------------------------------------------------- /toxcore/group_moderation_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_moderation_fuzz_test.cc -------------------------------------------------------------------------------- /toxcore/group_moderation_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_moderation_test.cc -------------------------------------------------------------------------------- /toxcore/group_onion_announce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_onion_announce.c -------------------------------------------------------------------------------- /toxcore/group_onion_announce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_onion_announce.h -------------------------------------------------------------------------------- /toxcore/group_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_pack.c -------------------------------------------------------------------------------- /toxcore/group_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/group_pack.h -------------------------------------------------------------------------------- /toxcore/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/list.c -------------------------------------------------------------------------------- /toxcore/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/list.h -------------------------------------------------------------------------------- /toxcore/list_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/list_test.cc -------------------------------------------------------------------------------- /toxcore/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/logger.c -------------------------------------------------------------------------------- /toxcore/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/logger.h -------------------------------------------------------------------------------- /toxcore/mono_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/mono_time.c -------------------------------------------------------------------------------- /toxcore/mono_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/mono_time.h -------------------------------------------------------------------------------- /toxcore/mono_time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/mono_time_test.cc -------------------------------------------------------------------------------- /toxcore/net_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/net_crypto.c -------------------------------------------------------------------------------- /toxcore/net_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/net_crypto.h -------------------------------------------------------------------------------- /toxcore/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/network.c -------------------------------------------------------------------------------- /toxcore/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/network.h -------------------------------------------------------------------------------- /toxcore/network_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/network_test.cc -------------------------------------------------------------------------------- /toxcore/onion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/onion.c -------------------------------------------------------------------------------- /toxcore/onion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/onion.h -------------------------------------------------------------------------------- /toxcore/onion_announce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/onion_announce.c -------------------------------------------------------------------------------- /toxcore/onion_announce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/onion_announce.h -------------------------------------------------------------------------------- /toxcore/onion_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/onion_client.c -------------------------------------------------------------------------------- /toxcore/onion_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/onion_client.h -------------------------------------------------------------------------------- /toxcore/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/ping.c -------------------------------------------------------------------------------- /toxcore/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/ping.h -------------------------------------------------------------------------------- /toxcore/ping_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/ping_array.c -------------------------------------------------------------------------------- /toxcore/ping_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/ping_array.h -------------------------------------------------------------------------------- /toxcore/ping_array_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/ping_array_test.cc -------------------------------------------------------------------------------- /toxcore/shared_key_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/shared_key_cache.c -------------------------------------------------------------------------------- /toxcore/shared_key_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/shared_key_cache.h -------------------------------------------------------------------------------- /toxcore/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/state.c -------------------------------------------------------------------------------- /toxcore/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/state.h -------------------------------------------------------------------------------- /toxcore/timed_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/timed_auth.c -------------------------------------------------------------------------------- /toxcore/timed_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/timed_auth.h -------------------------------------------------------------------------------- /toxcore/tox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox.c -------------------------------------------------------------------------------- /toxcore/tox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox.h -------------------------------------------------------------------------------- /toxcore/tox_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_api.c -------------------------------------------------------------------------------- /toxcore/tox_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_dispatch.c -------------------------------------------------------------------------------- /toxcore/tox_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_dispatch.h -------------------------------------------------------------------------------- /toxcore/tox_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_events.c -------------------------------------------------------------------------------- /toxcore/tox_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_events.h -------------------------------------------------------------------------------- /toxcore/tox_events_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_events_fuzz_test.cc -------------------------------------------------------------------------------- /toxcore/tox_events_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_events_test.cc -------------------------------------------------------------------------------- /toxcore/tox_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_private.c -------------------------------------------------------------------------------- /toxcore/tox_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_private.h -------------------------------------------------------------------------------- /toxcore/tox_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_struct.h -------------------------------------------------------------------------------- /toxcore/tox_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_test.cc -------------------------------------------------------------------------------- /toxcore/tox_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_unpack.c -------------------------------------------------------------------------------- /toxcore/tox_unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/tox_unpack.h -------------------------------------------------------------------------------- /toxcore/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/util.c -------------------------------------------------------------------------------- /toxcore/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/util.h -------------------------------------------------------------------------------- /toxcore/util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxcore/util_test.cc -------------------------------------------------------------------------------- /toxencryptsave/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxencryptsave/BUILD.bazel -------------------------------------------------------------------------------- /toxencryptsave/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxencryptsave/Makefile.inc -------------------------------------------------------------------------------- /toxencryptsave/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxencryptsave/defines.h -------------------------------------------------------------------------------- /toxencryptsave/toxencryptsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxencryptsave/toxencryptsave.c -------------------------------------------------------------------------------- /toxencryptsave/toxencryptsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxencryptsave/toxencryptsave.h -------------------------------------------------------------------------------- /toxutil/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxutil/BUILD.bazel -------------------------------------------------------------------------------- /toxutil/toxutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxutil/toxutil.c -------------------------------------------------------------------------------- /toxutil/toxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/c-toxcore/HEAD/toxutil/toxutil.h --------------------------------------------------------------------------------