Asterisk - The Open Source Telephony Project  18.5.0
conf_state_multi.c
Go to the documentation of this file.
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 2012, Terry Wilson
5  *
6  * Terry Wilson <[email protected]>
7  *
8  * See http://www.asterisk.org for more information about
9  * the Asterisk project. Please do not directly contact
10  * any of the maintainers of this project for assistance;
11  * the project provides a web site, mailing lists and IRC
12  * channels for your use.
13  *
14  * This program is free software, distributed under the terms of
15  * the GNU General Public License Version 2. See the LICENSE file
16  * at the top of the source tree.
17  *
18  * Please follow coding guidelines
19  * http://svn.digium.com/view/asterisk/trunk/doc/CODING-GUIDELINES
20  */
21 
22 /*! \file
23  *
24  * \brief Confbridge state handling for the MULTI state
25  *
26  * \author\verbatim Terry Wilson <[email protected]> \endverbatim
27  *
28  * \ingroup applications
29  */
30 
31 /*** MODULEINFO
32  <support_level>core</support_level>
33  ***/
34 
35 #include "include/confbridge.h"
36 #include "include/conf_state.h"
37 
38 static void join_unmarked(struct confbridge_user *user);
39 static void join_marked(struct confbridge_user *user);
40 static void leave_unmarked(struct confbridge_user *user);
41 
43  .name = "MULTI",
44  .join_unmarked = join_unmarked,
45  .join_waitmarked = conf_default_join_waitmarked,
46  .join_marked = join_marked,
47  .leave_unmarked = leave_unmarked,
48  .leave_waitmarked = conf_default_leave_waitmarked,
49 };
51 
52 static void join_unmarked(struct confbridge_user *user)
53 {
54  conf_add_user_active(user->conference, user);
56 }
57 
58 static void join_marked(struct confbridge_user *user)
59 {
60  conf_add_user_marked(user->conference, user);
62 
64 }
65 
66 static void leave_unmarked(struct confbridge_user *user)
67 {
69  if (user->conference->activeusers == 1) {
71  }
72 }
void conf_add_user_active(struct confbridge_conference *conference, struct confbridge_user *user)
Add a conference bridge user as an unmarked active user of the conference.
struct confbridge_state * CONF_STATE_MULTI
Conference state with multiple active users, but no marked users.
void conf_remove_user_active(struct confbridge_conference *conference, struct confbridge_user *user)
Remove a conference bridge user from the unmarked active conference users in the conference.
void conf_default_leave_waitmarked(struct confbridge_user *user)
Logic to execute every time a waitmarked user leaves an unmarked conference.
Definition: conf_state.c:74
struct confbridge_conference * conference
Definition: confbridge.h:272
static void join_marked(struct confbridge_user *user)
void conf_update_user_mute(struct confbridge_user *user)
Update the actual mute status of the user and set it on the bridge.
const char * name
Definition: conf_state.h:49
struct confbridge_state STATE_MULTI
void conf_add_user_marked(struct confbridge_conference *conference, struct confbridge_user *user)
Add a conference bridge user as a marked active user of the conference.
void conf_default_join_waitmarked(struct confbridge_user *user)
Logic to execute every time a waitmarked user joins an unmarked conference.
Definition: conf_state.c:67
static void leave_unmarked(struct confbridge_user *user)
static void join_unmarked(struct confbridge_user *user)
struct confbridge_state * CONF_STATE_SINGLE
Conference state with only a single unmarked active user.
unsigned int activeusers
Definition: confbridge.h:249
structure to hold users read from users.conf
Confbridge state handling.
A conference state object to hold the various state callback functions.
Definition: conf_state.h:48
The structure that represents a conference bridge user.
Definition: confbridge.h:271
struct confbridge_state * CONF_STATE_MULTI_MARKED
Conference state with multiple active users and at least one marked user.
void conf_change_state(struct confbridge_user *user, struct confbridge_state *newstate)
Execute conference state transition because of a user action.
Definition: conf_state.c:82