Asterisk - The Open Source Telephony Project GIT-master-2de1a68
Functions | Variables
conf_state_single_marked.c File Reference

Confbridge state handling for the SINGLE_MARKED state. More...

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

Go to the source code of this file.

Functions

static void join_active (struct confbridge_user *user)
 
static void join_marked (struct confbridge_user *user)
 
static void leave_marked (struct confbridge_user *user)
 
static void transition_to_single_marked (struct confbridge_user *user)
 

Variables

struct confbridge_stateCONF_STATE_SINGLE_MARKED = &STATE_SINGLE_MARKED
 Conference state with only a single marked active user. More...
 
struct confbridge_state STATE_SINGLE_MARKED
 

Detailed Description

Confbridge state handling for the SINGLE_MARKED state.

Author
Terry Wilson <twilson@digium.com> 

Definition in file conf_state_single_marked.c.

Function Documentation

◆ join_active()

static void join_active ( struct confbridge_user user)
static

Definition at line 50 of file conf_state_single_marked.c.

51{
52 conf_add_user_active(user->conference, user);
55
57}
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.
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_handle_second_active(struct confbridge_conference *conference)
Handle when a conference moves to having more than one active participant.
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_active(), conf_change_state(), conf_handle_second_active(), CONF_STATE_MULTI_MARKED, and conf_update_user_mute().

◆ join_marked()

static void join_marked ( struct confbridge_user user)
static

Definition at line 59 of file conf_state_single_marked.c.

60{
61 conf_add_user_marked(user->conference, user);
64
66}
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.

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

◆ leave_marked()

static void leave_marked ( struct confbridge_user user)
static

Definition at line 68 of file conf_state_single_marked.c.

69{
70 conf_remove_user_marked(user->conference, user);
71 if (user->playing_moh) {
73 }
74
76}
void conf_moh_stop(struct confbridge_user *user)
Stop MOH for the conference user.
void conf_remove_user_marked(struct confbridge_conference *conference, struct confbridge_user *user)
Remove a conference bridge user from the marked active conference users in the conference.
struct confbridge_state * CONF_STATE_EMPTY
Conference state with no active or waiting users.

References conf_change_state(), conf_moh_stop(), conf_remove_user_marked(), and CONF_STATE_EMPTY.

◆ transition_to_single_marked()

static void transition_to_single_marked ( struct confbridge_user user)
static

Definition at line 78 of file conf_state_single_marked.c.

79{
80 conf_mute_only_active(user->conference);
81}
void conf_mute_only_active(struct confbridge_conference *conference)
Attempt to mute/play MOH to the only user in the conference if they require it.

References conf_mute_only_active().

Variable Documentation

◆ CONF_STATE_SINGLE_MARKED

struct confbridge_state* CONF_STATE_SINGLE_MARKED = &STATE_SINGLE_MARKED

Conference state with only a single marked active user.

Definition at line 48 of file conf_state_single_marked.c.

Referenced by join_marked(), leave_active(), and leave_marked().

◆ STATE_SINGLE_MARKED

struct confbridge_state STATE_SINGLE_MARKED

Definition at line 40 of file conf_state_single_marked.c.