Asterisk - The Open Source Telephony Project GIT-master-7e7a603
Functions | Variables
conf_state_multi.c File Reference

Confbridge state handling for the MULTI state. More...

#include "include/confbridge.h"
#include "include/conf_state.h"
Include dependency graph for conf_state_multi.c:

Go to the source code of this file.

Functions

static void join_marked (struct confbridge_user *user)
 
static void join_unmarked (struct confbridge_user *user)
 
static void leave_unmarked (struct confbridge_user *user)
 

Variables

struct confbridge_stateCONF_STATE_MULTI = &STATE_MULTI
 Conference state with multiple active users, but no marked users. More...
 
struct confbridge_state STATE_MULTI
 

Detailed Description

Confbridge state handling for the MULTI state.

Author
Terry Wilson <twilson@digium.com> 

Definition in file conf_state_multi.c.

Function Documentation

◆ join_marked()

static void join_marked ( struct confbridge_user user)
static

Definition at line 55 of file conf_state_multi.c.

56{
57 conf_add_user_marked(user->conference, user);
59
61}
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_update_user_mute(struct confbridge_user *user)
Update the actual mute status of the user and set it on the bridge.
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:77
struct confbridge_state * CONF_STATE_MULTI_MARKED
Conference state with multiple active users and at least one marked user.
structure to hold users read from users.conf

References conf_add_user_marked(), conf_change_state(), CONF_STATE_MULTI_MARKED, and conf_update_user_mute().

◆ join_unmarked()

static void join_unmarked ( struct confbridge_user user)
static

Definition at line 49 of file conf_state_multi.c.

50{
51 conf_add_user_active(user->conference, user);
53}
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.

References conf_add_user_active(), and conf_update_user_mute().

◆ leave_unmarked()

static void leave_unmarked ( struct confbridge_user user)
static

Definition at line 63 of file conf_state_multi.c.

64{
65 conf_remove_user_active(user->conference, user);
66 if (user->conference->activeusers == 1) {
68 }
69}
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.
struct confbridge_state * CONF_STATE_SINGLE
Conference state with only a single unmarked active user.

References conf_change_state(), conf_remove_user_active(), and CONF_STATE_SINGLE.

Variable Documentation

◆ CONF_STATE_MULTI

struct confbridge_state* CONF_STATE_MULTI = &STATE_MULTI

Conference state with multiple active users, but no marked users.

Definition at line 47 of file conf_state_multi.c.

Referenced by join_unmarked(), and leave_marked().

◆ STATE_MULTI

struct confbridge_state STATE_MULTI

Definition at line 39 of file conf_state_multi.c.