1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-17 09:26:35 +01:00

Implement groupAV

This commit is contained in:
zugz
2020-05-07 00:00:00 +00:00
committed by zugz (tox)
parent daf794c4a2
commit ddcf224db2
15 changed files with 794 additions and 120 deletions

View File

@@ -101,17 +101,18 @@ static struct cmd_func conference_commands[] = {
{ "/title", cmd_conference_set_title },
#ifdef AUDIO
{ "/mute", cmd_mute },
{ "/sense", cmd_sense },
{ "/audio", cmd_enable_audio },
{ "/mute", cmd_conference_mute },
{ "/sense", cmd_sense },
#endif /* AUDIO */
{ NULL, NULL },
};
#ifdef PYTHON
#define SPECIAL_COMMANDS 6
#define SPECIAL_COMMANDS 7
#else
#define SPECIAL_COMMANDS 5
#define SPECIAL_COMMANDS 6
#endif /* PYTHON */
/* Special commands are commands that only take one argument even if it contains spaces */
@@ -124,6 +125,7 @@ static const char special_commands[SPECIAL_COMMANDS][MAX_CMDNAME_SIZE] = {
#endif /* PYTHON */
"/sendfile",
"/title",
"/mute",
};
/* Returns true if input command is in the special_commands array. */