Skip to content

Commit

Permalink
feat: Add debugtox to the stack.
Browse files Browse the repository at this point in the history
  • Loading branch information
iphydf committed Feb 8, 2025
1 parent 9223392 commit 6cd48f0
Show file tree
Hide file tree
Showing 16 changed files with 24 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
[submodule "cyclone"]
path = cyclone
url = https://github.com/TokTok/cyclone
[submodule "debugtox"]
path = debugtox
url = https://github.com/TokTok/debugtox
[submodule "dockerfiles"]
path = dockerfiles
url = https://github.com/TokTok/dockerfiles
Expand Down
2 changes: 1 addition & 1 deletion btox
2 changes: 1 addition & 1 deletion c-toxcore
Submodule c-toxcore updated 53 files
+32 −33 .cirrus.yml
+13 −9 .clusterfuzzlite/Dockerfile
+12 −3 .clusterfuzzlite/build.sh
+2 −0 .github/scripts/flags-clang.sh
+11 −1 .github/workflows/cflite_batch.yml
+2 −1 .github/workflows/cflite_cron.yml
+36 −0 .github/workflows/cflite_pr.yml
+2 −2 .github/workflows/ci.yml
+1 −1 CMakeLists.txt
+1 −1 auto_tests/CMakeLists.txt
+10 −10 auto_tests/TCP_test.c
+9 −10 auto_tests/dht_nodes_response_api_test.c
+4 −12 auto_tests/network_test.c
+3 −0 other/bootstrap_daemon/websocket/websockify/go.sum
+55 −4 other/bootstrap_daemon/websocket/websockify/websockify.go
+0 −4 other/docker/cppcheck/toxcore.cfg
+4 −1 testing/fuzzing/CMakeLists.txt
+6 −0 testing/fuzzing/bootstrap_fuzz_test.cc
+0 −1 testing/fuzzing/e2e_fuzz_test.cc
+33 −6 testing/fuzzing/fuzz_support.cc
+35 −3 testing/fuzzing/fuzz_support.hh
+15 −17 testing/fuzzing/protodump.cc
+5 −1 testing/fuzzing/rebuild_protodump
+2 −0 testing/fuzzing/toxsave_fuzz_test.cc
+3 −3 toxav/rtp.c
+3 −3 toxav/toxav.c
+17 −0 toxcore/BUILD.bazel
+46 −46 toxcore/DHT.c
+8 −8 toxcore/DHT.h
+1 −1 toxcore/Makefile.inc
+8 −8 toxcore/TCP_common.c
+3 −4 toxcore/TCP_server.c
+0 −227 toxcore/events/dht_get_nodes_response.c
+222 −0 toxcore/events/dht_nodes_response.c
+1 −1 toxcore/events/events_alloc.h
+12 −12 toxcore/forwarding_fuzz_test.cc
+25 −5 toxcore/group_chats.c
+8 −0 toxcore/net_crypto.h
+93 −0 toxcore/net_crypto_fuzz_test.cc
+41 −71 toxcore/network.c
+22 −19 toxcore/network.h
+2 −1 toxcore/onion_client.c
+8 −6 toxcore/tox.c
+1 −1 toxcore/tox.h
+6 −6 toxcore/tox_dispatch.c
+4 −4 toxcore/tox_dispatch.h
+4 −4 toxcore/tox_event.c
+5 −5 toxcore/tox_event.h
+2 −2 toxcore/tox_events.c
+10 −10 toxcore/tox_events.h
+12 −11 toxcore/tox_private.c
+20 −19 toxcore/tox_private.h
+2 −3 toxcore/tox_struct.h
2 changes: 1 addition & 1 deletion ci-tools
5 changes: 4 additions & 1 deletion cspell.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@ words:
- bazel
- bazelisk
- buildx
- dups
- fastbuild
- LIBC
- libc
- libfuzzer
- mempty
- mypy
- nixpkgs
- patchelf
- qtox
- toktok
- toxchat
- toxcore
1 change: 1 addition & 0 deletions debugtox
Submodule debugtox added at 725f7b
2 changes: 1 addition & 1 deletion experimental
2 changes: 1 addition & 1 deletion hs-toxcore
2 changes: 1 addition & 1 deletion qtox
Submodule qtox updated 99 files
+0 −27 .github/workflows/build-test-deploy.yaml
+3 −0 .gitignore
+6 −0 CMakeLists.txt
+1 −1 android/cross-compile/build.sh
+4 −4 appimage/build.sh
+3 −0 netlify.toml
+6 −6 platform/wasm/Dockerfile
+3 −3 platform/wasm/build.sh
+30 −0 platform/wasm/netlify.sh
+22 −6 src/appmanager.cpp
+1 −1 src/chatlog/content/filetransferwidget.ui
+14 −53 src/core/core.cpp
+5 −4 src/core/core.h
+22 −2 src/core/toxoptions.cpp
+12 −12 src/nexus.cpp
+3 −3 src/nexus.h
+48 −48 src/persistence/profile.cpp
+9 −7 src/persistence/profile.h
+38 −33 src/persistence/settings.cpp
+1 −1 src/persistence/settings.h
+3 −14 src/widget/about/aboutfriendform.cpp
+30 −47 src/widget/about/aboutfriendform.ui
+1 −1 src/widget/form/debug/debuglog.ui
+1 −1 src/widget/form/profileform.ui
+1 −1 src/widget/form/searchsettingsform.ui
+1 −1 src/widget/form/settings/aboutsettings.ui
+32 −2 src/widget/form/settings/advancedform.cpp
+1 −0 src/widget/form/settings/advancedform.h
+49 −42 src/widget/form/settings/advancedsettings.ui
+1 −1 src/widget/form/settings/avform.ui
+5 −5 src/widget/form/settings/generalform.cpp
+1 −1 src/widget/form/settings/generalsettings.ui
+1 −1 src/widget/form/settings/privacysettings.ui
+1 −1 src/widget/form/settings/userinterfacesettings.ui
+2 −4 src/widget/friendwidget.cpp
+14 −0 src/widget/popup.cpp
+13 −0 src/widget/popup.h
+2 −2 src/widget/widget.cpp
+2 −0 test/BUILD.bazel
+13 −9 test/core/core_test.cpp
+30 −48 translations/ar.ts
+30 −47 translations/be.ts
+30 −55 translations/ber.ts
+278 −293 translations/bg.ts
+30 −55 translations/bn.ts
+30 −45 translations/cs.ts
+30 −51 translations/da.ts
+30 −46 translations/de.ts
+30 −46 translations/el.ts
+30 −50 translations/eo.ts
+30 −45 translations/es.ts
+30 −45 translations/et.ts
+30 −47 translations/fa.ts
+30 −45 translations/fi.ts
+30 −45 translations/fr.ts
+30 −47 translations/gl.ts
+30 −55 translations/he.ts
+30 −46 translations/hr.ts
+30 −46 translations/hu.ts
+30 −54 translations/is.ts
+30 −45 translations/it.ts
+30 −46 translations/ja.ts
+30 −55 translations/jbo.ts
+30 −55 translations/kn.ts
+30 −47 translations/ko.ts
+30 −55 translations/li.ts
+30 −45 translations/lt.ts
+30 −46 translations/lv.ts
+30 −47 translations/mk.ts
+30 −45 translations/nb_NO.ts
+30 −45 translations/nl.ts
+26 −45 translations/nl_BE.ts
+30 −46 translations/pl.ts
+28 −47 translations/pr.ts
+30 −45 translations/pt.ts
+30 −46 translations/pt_BR.ts
+30 −46 translations/ro.ts
+30 −45 translations/ru.ts
+30 −55 translations/si.ts
+30 −46 translations/sk.ts
+30 −46 translations/sl.ts
+30 −55 translations/sq.ts
+30 −47 translations/sr.ts
+26 −45 translations/sr_Latn.ts
+30 −46 translations/sv.ts
+30 −55 translations/sw.ts
+30 −47 translations/ta.ts
+30 −45 translations/tr.ts
+30 −47 translations/ug.ts
+30 −45 translations/uk.ts
+30 −55 translations/ur.ts
+30 −46 translations/vi.ts
+30 −45 translations/zh_CN.ts
+30 −47 translations/zh_TW.ts
+1 −0 util/BUILD.bazel
+5 −2 util/CMakeLists.txt
+14 −0 util/include/util/network.h
+21 −0 util/src/network.cpp
+8 −4 windows/cross-compile/build.sh
1 change: 1 addition & 0 deletions tools/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ workspace(projects = [
"c-toxcore",
"ci-tools",
"cyclone",
"debugtox",
"dockerfiles",
"experimental",
"go-toxcore-c",
Expand Down
1 change: 1 addition & 0 deletions tools/built/src/home/.config/home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
ktfmt # Kotlin formatter
man-pages # libc documentation
man-pages-posix # libc documentation (POSIX functions)
netlify-cli # to perform local test deploys
openssh # ssh server
protobuf # needed to build protobuf files in jvm-toxcore-c
# needed for .hie-bios
Expand Down
4 changes: 4 additions & 0 deletions tools/git-remotes
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ our %REPOS = (
upstream => 'toktok',
repo 'iphydf',
}],
'debugtox' => ['debugtox', {
upstream => 'toktok',
repo 'iphydf',
}],
'dockerfiles' => ['dockerfiles', {
upstream => 'toktok',
repo 'iphydf',
Expand Down
2 changes: 1 addition & 1 deletion tools/toktok-fuzzer
Submodule toktok-fuzzer updated 1972 files

0 comments on commit 6cd48f0

Please sign in to comment.