├── .clang-format ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report_template.md │ └── feature_request_template.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── gh_pages.yml │ └── test_build.yml ├── .gitignore ├── .gitmodules ├── .vscode └── c_cpp_properties.json ├── AUTHORS ├── Doxyfile ├── KNOWN_BUGS.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── config.json ├── core ├── Makefile ├── anomap.c ├── anomap.h ├── attributes.h ├── carray.h ├── chash.h ├── clock.h ├── cog-utils.c ├── cog-utils.h ├── curl-websocket-utils.c ├── curl-websocket.c ├── curl-websocket.h ├── error.h ├── io_poller.c ├── io_poller.h ├── jsmn-find.c ├── jsmn-find.h ├── jsmn.h ├── json-build.c ├── json-build.h ├── log.c ├── log.h ├── logconf.c ├── logconf.h ├── priority_queue.c ├── priority_queue.h ├── queriec.c ├── queriec.h ├── queue.h ├── sha1.c ├── sha1.h ├── threadpool.c ├── threadpool.h ├── types.h ├── user-agent.c ├── user-agent.h ├── websockets.c └── websockets.h ├── docs ├── .gitignore ├── CODING_GUIDELINES.md ├── CONTRIBUTING.md ├── DISCORD_ROADMAP.md ├── INTERNALS.md ├── PORTABILITY.md ├── PROJECT_OUTLINE.md ├── api │ └── .gitkeep ├── guides │ ├── .gitkeep │ ├── compiling_on_windows.md │ ├── concord_on_old_systems.md │ ├── config.json_directives.md │ ├── cross_compiling.md │ ├── databases_with_concord.md │ ├── debugging.md │ ├── embeds.md │ ├── installing_concord_termux.md │ ├── msys2_and_mingw64.md │ ├── scheduler_event.md │ ├── screenshots │ │ └── config.json_directives │ │ │ ├── logging_disable_modules_none.png │ │ │ ├── logging_disable_modules_websockets.png │ │ │ ├── logging_level.png │ │ │ ├── logging_quiet_false.png │ │ │ ├── logging_quiet_true.png │ │ │ ├── logging_use_color_false.png │ │ │ └── logging_use_color_true.png │ ├── setup_concord_with_env.md │ └── sqlite3_db_with_concord.md ├── header.html ├── manuals │ ├── concord.3 │ ├── concord_guild.3 │ └── concord_user.3 └── static │ ├── cogmasters.svg │ ├── cogmasters_unrotated.svg │ ├── concord-small.png │ ├── concord-text-small.png │ ├── icon.ico │ ├── logo.svg │ ├── logo_text.svg │ └── social-preview.png ├── examples ├── .gitignore ├── 8ball.c ├── Makefile ├── audit-log.c ├── ban.c ├── cache.c ├── channel.c ├── components.c ├── copycat.c ├── embed.c ├── emoji.c ├── fetch-messages.c ├── guild-template.c ├── guild.c ├── invite.c ├── manual-dm.c ├── pin.c ├── ping-pong.c ├── presence.c ├── reaction.c ├── shell.c ├── slash-commands.c ├── slash-commands2.c ├── spam.c ├── timers.c ├── voice-join.c └── webhook.c ├── gencodecs ├── .gitignore ├── Makefile ├── all.PRE.h ├── api │ ├── application.PRE.h │ ├── application_commands.PRE.h │ ├── audit_log.PRE.h │ ├── auto_moderation.PRE.h │ ├── channel.PRE.h │ ├── custom.PRE.h │ ├── emoji.PRE.h │ ├── gateway.PRE.h │ ├── guild.PRE.h │ ├── guild_scheduled_event.PRE.h │ ├── guild_template.PRE.h │ ├── interactions.PRE.h │ ├── invite.PRE.h │ ├── message_components.PRE.h │ ├── oauth2.PRE.h │ ├── permissions.PRE.h │ ├── stage_instance.PRE.h │ ├── sticker.PRE.h │ ├── teams.PRE.h │ ├── user.PRE.h │ ├── voice.PRE.h │ ├── voice_connections.PRE.h │ └── webhook.PRE.h ├── discord_codecs.PRE.h ├── gencodecs-pp.c ├── gencodecs-process.PRE.h ├── gencodecs.h └── recipes │ ├── gencodecs-gen.PRE.h │ ├── json-decoder.h │ ├── json-encoder.h │ └── struct.h ├── include ├── application_command.h ├── audit_log.h ├── auto_moderation.h ├── channel.h ├── concord-once.h ├── discord-cache.h ├── discord-events.h ├── discord-internal.h ├── discord-request.h ├── discord-response.h ├── discord-voice.h ├── discord-worker.h ├── discord.h ├── emoji.h ├── gateway.h ├── guild.h ├── guild_scheduled_event.h ├── guild_template.h ├── interaction.h ├── invite.h ├── oauth2.h ├── osname.h ├── stage_instance.h ├── sticker.h ├── user.h ├── voice.h └── webhook.h ├── lib └── .gitkeep ├── licenses ├── LICENSE.anomap ├── LICENSE.cee-studio ├── LICENSE.curl-websockets ├── LICENSE.cware ├── LICENSE.jsmn ├── LICENSE.jsmn-find ├── LICENSE.json-build ├── LICENSE.json-string ├── LICENSE.performanc ├── LICENSE.priority_queue ├── LICENSE.stensal ├── LICENSE.threadpool └── LICENSE.utf8 ├── scripts └── load.sh ├── src ├── Makefile ├── application_command.c ├── audit_log.c ├── auto_moderation.c ├── channel.c ├── concord-once.c ├── discord-cache.c ├── discord-client.c ├── discord-events.c ├── discord-gateway.c ├── discord-gateway_dispatch.c ├── discord-loop.c ├── discord-messagecommands.c ├── discord-misc.c ├── discord-refcount.c ├── discord-rest.c ├── discord-rest_ratelimit.c ├── discord-rest_request.c ├── discord-timer.c ├── discord-voice.c ├── discord-worker.c ├── emoji.c ├── gateway.c ├── guild.c ├── guild_scheduled_event.c ├── guild_template.c ├── interaction.c ├── invite.c ├── oauth2.c ├── stage_instance.c ├── sticker.c ├── user.c ├── voice.c └── webhook.c ├── templates └── doc │ ├── concord.m4 │ ├── concord.template │ ├── concord_guild.template │ └── concord_user.template └── test ├── .gitignore ├── Makefile ├── greatest.h ├── queriec.c ├── racecond.c ├── rest.c ├── test_config.json ├── timeout.c ├── user-agent.c └── websockets.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/.github/ISSUE_TEMPLATE/bug_report_template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/.github/ISSUE_TEMPLATE/feature_request_template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/gh_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/.github/workflows/gh_pages.yml -------------------------------------------------------------------------------- /.github/workflows/test_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/.github/workflows/test_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/AUTHORS -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/Doxyfile -------------------------------------------------------------------------------- /KNOWN_BUGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/KNOWN_BUGS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/SECURITY.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/config.json -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/anomap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/anomap.c -------------------------------------------------------------------------------- /core/anomap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/anomap.h -------------------------------------------------------------------------------- /core/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/attributes.h -------------------------------------------------------------------------------- /core/carray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/carray.h -------------------------------------------------------------------------------- /core/chash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/chash.h -------------------------------------------------------------------------------- /core/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/clock.h -------------------------------------------------------------------------------- /core/cog-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/cog-utils.c -------------------------------------------------------------------------------- /core/cog-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/cog-utils.h -------------------------------------------------------------------------------- /core/curl-websocket-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/curl-websocket-utils.c -------------------------------------------------------------------------------- /core/curl-websocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/curl-websocket.c -------------------------------------------------------------------------------- /core/curl-websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/curl-websocket.h -------------------------------------------------------------------------------- /core/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/error.h -------------------------------------------------------------------------------- /core/io_poller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/io_poller.c -------------------------------------------------------------------------------- /core/io_poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/io_poller.h -------------------------------------------------------------------------------- /core/jsmn-find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/jsmn-find.c -------------------------------------------------------------------------------- /core/jsmn-find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/jsmn-find.h -------------------------------------------------------------------------------- /core/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/jsmn.h -------------------------------------------------------------------------------- /core/json-build.c: -------------------------------------------------------------------------------- 1 | #include "json-build.h" 2 | -------------------------------------------------------------------------------- /core/json-build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/json-build.h -------------------------------------------------------------------------------- /core/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/log.c -------------------------------------------------------------------------------- /core/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/log.h -------------------------------------------------------------------------------- /core/logconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/logconf.c -------------------------------------------------------------------------------- /core/logconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/logconf.h -------------------------------------------------------------------------------- /core/priority_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/priority_queue.c -------------------------------------------------------------------------------- /core/priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/priority_queue.h -------------------------------------------------------------------------------- /core/queriec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/queriec.c -------------------------------------------------------------------------------- /core/queriec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/queriec.h -------------------------------------------------------------------------------- /core/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/queue.h -------------------------------------------------------------------------------- /core/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/sha1.c -------------------------------------------------------------------------------- /core/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/sha1.h -------------------------------------------------------------------------------- /core/threadpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/threadpool.c -------------------------------------------------------------------------------- /core/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/threadpool.h -------------------------------------------------------------------------------- /core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/types.h -------------------------------------------------------------------------------- /core/user-agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/user-agent.c -------------------------------------------------------------------------------- /core/user-agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/user-agent.h -------------------------------------------------------------------------------- /core/websockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/websockets.c -------------------------------------------------------------------------------- /core/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/core/websockets.h -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | api/*.h 2 | html 3 | -------------------------------------------------------------------------------- /docs/CODING_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/CODING_GUIDELINES.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/DISCORD_ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/DISCORD_ROADMAP.md -------------------------------------------------------------------------------- /docs/INTERNALS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/INTERNALS.md -------------------------------------------------------------------------------- /docs/PORTABILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/PORTABILITY.md -------------------------------------------------------------------------------- /docs/PROJECT_OUTLINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/PROJECT_OUTLINE.md -------------------------------------------------------------------------------- /docs/api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/guides/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/guides/compiling_on_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/compiling_on_windows.md -------------------------------------------------------------------------------- /docs/guides/concord_on_old_systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/concord_on_old_systems.md -------------------------------------------------------------------------------- /docs/guides/config.json_directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/config.json_directives.md -------------------------------------------------------------------------------- /docs/guides/cross_compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/cross_compiling.md -------------------------------------------------------------------------------- /docs/guides/databases_with_concord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/databases_with_concord.md -------------------------------------------------------------------------------- /docs/guides/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/debugging.md -------------------------------------------------------------------------------- /docs/guides/embeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/embeds.md -------------------------------------------------------------------------------- /docs/guides/installing_concord_termux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/installing_concord_termux.md -------------------------------------------------------------------------------- /docs/guides/msys2_and_mingw64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/msys2_and_mingw64.md -------------------------------------------------------------------------------- /docs/guides/scheduler_event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/scheduler_event.md -------------------------------------------------------------------------------- /docs/guides/screenshots/config.json_directives/logging_disable_modules_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/screenshots/config.json_directives/logging_disable_modules_none.png -------------------------------------------------------------------------------- /docs/guides/screenshots/config.json_directives/logging_disable_modules_websockets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/screenshots/config.json_directives/logging_disable_modules_websockets.png -------------------------------------------------------------------------------- /docs/guides/screenshots/config.json_directives/logging_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/screenshots/config.json_directives/logging_level.png -------------------------------------------------------------------------------- /docs/guides/screenshots/config.json_directives/logging_quiet_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/screenshots/config.json_directives/logging_quiet_false.png -------------------------------------------------------------------------------- /docs/guides/screenshots/config.json_directives/logging_quiet_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/screenshots/config.json_directives/logging_quiet_true.png -------------------------------------------------------------------------------- /docs/guides/screenshots/config.json_directives/logging_use_color_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/screenshots/config.json_directives/logging_use_color_false.png -------------------------------------------------------------------------------- /docs/guides/screenshots/config.json_directives/logging_use_color_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/screenshots/config.json_directives/logging_use_color_true.png -------------------------------------------------------------------------------- /docs/guides/setup_concord_with_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/setup_concord_with_env.md -------------------------------------------------------------------------------- /docs/guides/sqlite3_db_with_concord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/guides/sqlite3_db_with_concord.md -------------------------------------------------------------------------------- /docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/header.html -------------------------------------------------------------------------------- /docs/manuals/concord.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/manuals/concord.3 -------------------------------------------------------------------------------- /docs/manuals/concord_guild.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/manuals/concord_guild.3 -------------------------------------------------------------------------------- /docs/manuals/concord_user.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/manuals/concord_user.3 -------------------------------------------------------------------------------- /docs/static/cogmasters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/static/cogmasters.svg -------------------------------------------------------------------------------- /docs/static/cogmasters_unrotated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/static/cogmasters_unrotated.svg -------------------------------------------------------------------------------- /docs/static/concord-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/static/concord-small.png -------------------------------------------------------------------------------- /docs/static/concord-text-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/static/concord-text-small.png -------------------------------------------------------------------------------- /docs/static/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/static/icon.ico -------------------------------------------------------------------------------- /docs/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/static/logo.svg -------------------------------------------------------------------------------- /docs/static/logo_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/static/logo_text.svg -------------------------------------------------------------------------------- /docs/static/social-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/docs/static/social-preview.png -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/8ball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/8ball.c -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/audit-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/audit-log.c -------------------------------------------------------------------------------- /examples/ban.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/ban.c -------------------------------------------------------------------------------- /examples/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/cache.c -------------------------------------------------------------------------------- /examples/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/channel.c -------------------------------------------------------------------------------- /examples/components.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/components.c -------------------------------------------------------------------------------- /examples/copycat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/copycat.c -------------------------------------------------------------------------------- /examples/embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/embed.c -------------------------------------------------------------------------------- /examples/emoji.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/emoji.c -------------------------------------------------------------------------------- /examples/fetch-messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/fetch-messages.c -------------------------------------------------------------------------------- /examples/guild-template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/guild-template.c -------------------------------------------------------------------------------- /examples/guild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/guild.c -------------------------------------------------------------------------------- /examples/invite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/invite.c -------------------------------------------------------------------------------- /examples/manual-dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/manual-dm.c -------------------------------------------------------------------------------- /examples/pin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/pin.c -------------------------------------------------------------------------------- /examples/ping-pong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/ping-pong.c -------------------------------------------------------------------------------- /examples/presence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/presence.c -------------------------------------------------------------------------------- /examples/reaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/reaction.c -------------------------------------------------------------------------------- /examples/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/shell.c -------------------------------------------------------------------------------- /examples/slash-commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/slash-commands.c -------------------------------------------------------------------------------- /examples/slash-commands2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/slash-commands2.c -------------------------------------------------------------------------------- /examples/spam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/spam.c -------------------------------------------------------------------------------- /examples/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/timers.c -------------------------------------------------------------------------------- /examples/voice-join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/voice-join.c -------------------------------------------------------------------------------- /examples/webhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/examples/webhook.c -------------------------------------------------------------------------------- /gencodecs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/.gitignore -------------------------------------------------------------------------------- /gencodecs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/Makefile -------------------------------------------------------------------------------- /gencodecs/all.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/all.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/application.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/application.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/application_commands.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/application_commands.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/audit_log.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/audit_log.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/auto_moderation.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/auto_moderation.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/channel.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/channel.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/custom.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/custom.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/emoji.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/emoji.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/gateway.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/gateway.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/guild.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/guild.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/guild_scheduled_event.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/guild_scheduled_event.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/guild_template.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/guild_template.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/interactions.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/interactions.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/invite.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/invite.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/message_components.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/message_components.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/oauth2.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/oauth2.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/permissions.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/permissions.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/stage_instance.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/stage_instance.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/sticker.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/sticker.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/teams.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/teams.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/user.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/user.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/voice.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/voice.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/voice_connections.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/voice_connections.PRE.h -------------------------------------------------------------------------------- /gencodecs/api/webhook.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/api/webhook.PRE.h -------------------------------------------------------------------------------- /gencodecs/discord_codecs.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/discord_codecs.PRE.h -------------------------------------------------------------------------------- /gencodecs/gencodecs-pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/gencodecs-pp.c -------------------------------------------------------------------------------- /gencodecs/gencodecs-process.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/gencodecs-process.PRE.h -------------------------------------------------------------------------------- /gencodecs/gencodecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/gencodecs.h -------------------------------------------------------------------------------- /gencodecs/recipes/gencodecs-gen.PRE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/recipes/gencodecs-gen.PRE.h -------------------------------------------------------------------------------- /gencodecs/recipes/json-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/recipes/json-decoder.h -------------------------------------------------------------------------------- /gencodecs/recipes/json-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/recipes/json-encoder.h -------------------------------------------------------------------------------- /gencodecs/recipes/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/gencodecs/recipes/struct.h -------------------------------------------------------------------------------- /include/application_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/application_command.h -------------------------------------------------------------------------------- /include/audit_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/audit_log.h -------------------------------------------------------------------------------- /include/auto_moderation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/auto_moderation.h -------------------------------------------------------------------------------- /include/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/channel.h -------------------------------------------------------------------------------- /include/concord-once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/concord-once.h -------------------------------------------------------------------------------- /include/discord-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/discord-cache.h -------------------------------------------------------------------------------- /include/discord-events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/discord-events.h -------------------------------------------------------------------------------- /include/discord-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/discord-internal.h -------------------------------------------------------------------------------- /include/discord-request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/discord-request.h -------------------------------------------------------------------------------- /include/discord-response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/discord-response.h -------------------------------------------------------------------------------- /include/discord-voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/discord-voice.h -------------------------------------------------------------------------------- /include/discord-worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/discord-worker.h -------------------------------------------------------------------------------- /include/discord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/discord.h -------------------------------------------------------------------------------- /include/emoji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/emoji.h -------------------------------------------------------------------------------- /include/gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/gateway.h -------------------------------------------------------------------------------- /include/guild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/guild.h -------------------------------------------------------------------------------- /include/guild_scheduled_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/guild_scheduled_event.h -------------------------------------------------------------------------------- /include/guild_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/guild_template.h -------------------------------------------------------------------------------- /include/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/interaction.h -------------------------------------------------------------------------------- /include/invite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/invite.h -------------------------------------------------------------------------------- /include/oauth2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/oauth2.h -------------------------------------------------------------------------------- /include/osname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/osname.h -------------------------------------------------------------------------------- /include/stage_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/stage_instance.h -------------------------------------------------------------------------------- /include/sticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/sticker.h -------------------------------------------------------------------------------- /include/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/user.h -------------------------------------------------------------------------------- /include/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/voice.h -------------------------------------------------------------------------------- /include/webhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/include/webhook.h -------------------------------------------------------------------------------- /lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /licenses/LICENSE.anomap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.anomap -------------------------------------------------------------------------------- /licenses/LICENSE.cee-studio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.cee-studio -------------------------------------------------------------------------------- /licenses/LICENSE.curl-websockets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.curl-websockets -------------------------------------------------------------------------------- /licenses/LICENSE.cware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.cware -------------------------------------------------------------------------------- /licenses/LICENSE.jsmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.jsmn -------------------------------------------------------------------------------- /licenses/LICENSE.jsmn-find: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.jsmn-find -------------------------------------------------------------------------------- /licenses/LICENSE.json-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.json-build -------------------------------------------------------------------------------- /licenses/LICENSE.json-string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.json-string -------------------------------------------------------------------------------- /licenses/LICENSE.performanc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.performanc -------------------------------------------------------------------------------- /licenses/LICENSE.priority_queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.priority_queue -------------------------------------------------------------------------------- /licenses/LICENSE.stensal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.stensal -------------------------------------------------------------------------------- /licenses/LICENSE.threadpool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/licenses/LICENSE.threadpool -------------------------------------------------------------------------------- /licenses/LICENSE.utf8: -------------------------------------------------------------------------------- 1 | https://github.com/legitparty/jsmn 2 | -------------------------------------------------------------------------------- /scripts/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/scripts/load.sh -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/application_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/application_command.c -------------------------------------------------------------------------------- /src/audit_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/audit_log.c -------------------------------------------------------------------------------- /src/auto_moderation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/auto_moderation.c -------------------------------------------------------------------------------- /src/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/channel.c -------------------------------------------------------------------------------- /src/concord-once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/concord-once.c -------------------------------------------------------------------------------- /src/discord-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-cache.c -------------------------------------------------------------------------------- /src/discord-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-client.c -------------------------------------------------------------------------------- /src/discord-events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-events.c -------------------------------------------------------------------------------- /src/discord-gateway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-gateway.c -------------------------------------------------------------------------------- /src/discord-gateway_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-gateway_dispatch.c -------------------------------------------------------------------------------- /src/discord-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-loop.c -------------------------------------------------------------------------------- /src/discord-messagecommands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-messagecommands.c -------------------------------------------------------------------------------- /src/discord-misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-misc.c -------------------------------------------------------------------------------- /src/discord-refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-refcount.c -------------------------------------------------------------------------------- /src/discord-rest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-rest.c -------------------------------------------------------------------------------- /src/discord-rest_ratelimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-rest_ratelimit.c -------------------------------------------------------------------------------- /src/discord-rest_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-rest_request.c -------------------------------------------------------------------------------- /src/discord-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-timer.c -------------------------------------------------------------------------------- /src/discord-voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-voice.c -------------------------------------------------------------------------------- /src/discord-worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/discord-worker.c -------------------------------------------------------------------------------- /src/emoji.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/emoji.c -------------------------------------------------------------------------------- /src/gateway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/gateway.c -------------------------------------------------------------------------------- /src/guild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/guild.c -------------------------------------------------------------------------------- /src/guild_scheduled_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/guild_scheduled_event.c -------------------------------------------------------------------------------- /src/guild_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/guild_template.c -------------------------------------------------------------------------------- /src/interaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/interaction.c -------------------------------------------------------------------------------- /src/invite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/invite.c -------------------------------------------------------------------------------- /src/oauth2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/oauth2.c -------------------------------------------------------------------------------- /src/stage_instance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/stage_instance.c -------------------------------------------------------------------------------- /src/sticker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/sticker.c -------------------------------------------------------------------------------- /src/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/user.c -------------------------------------------------------------------------------- /src/voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/voice.c -------------------------------------------------------------------------------- /src/webhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/src/webhook.c -------------------------------------------------------------------------------- /templates/doc/concord.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/templates/doc/concord.m4 -------------------------------------------------------------------------------- /templates/doc/concord.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/templates/doc/concord.template -------------------------------------------------------------------------------- /templates/doc/concord_guild.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/templates/doc/concord_guild.template -------------------------------------------------------------------------------- /templates/doc/concord_user.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/templates/doc/concord_user.template -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/greatest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/test/greatest.h -------------------------------------------------------------------------------- /test/queriec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/test/queriec.c -------------------------------------------------------------------------------- /test/racecond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/test/racecond.c -------------------------------------------------------------------------------- /test/rest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/test/rest.c -------------------------------------------------------------------------------- /test/test_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/test/test_config.json -------------------------------------------------------------------------------- /test/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/test/timeout.c -------------------------------------------------------------------------------- /test/user-agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/test/user-agent.c -------------------------------------------------------------------------------- /test/websockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cogmasters/concord/HEAD/test/websockets.c --------------------------------------------------------------------------------