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

Confbridge state handling for the SINGLE state. More...

#include "include/confbridge.h"
#include "include/conf_state.h"
Include dependency graph for conf_state_single.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)
 
static void transition_to_single (struct confbridge_user *user)
 

Variables

struct confbridge_stateCONF_STATE_SINGLE = &STATE_SINGLE
 Conference state with only a single unmarked active user. More...
 
struct confbridge_state STATE_SINGLE
 

Detailed Description

Confbridge state handling for the SINGLE state.

Author
Terry Wilson <twilson@digium.com> 

Definition in file conf_state_single.c.

Function Documentation

◆ join_marked()

static void join_marked ( struct confbridge_user user)
static

Definition at line 60 of file conf_state_single.c.

61{
62 conf_add_user_marked(user->conference, user);
65
67}
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_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_marked(), conf_change_state(), conf_handle_second_active(), CONF_STATE_MULTI_MARKED, and conf_update_user_mute().

◆ join_unmarked()

static void join_unmarked ( struct confbridge_user user)
static

Definition at line 51 of file conf_state_single.c.

52{
53 conf_add_user_active(user->conference, user);
56
58}
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.

References conf_add_user_active(), conf_change_state(), conf_handle_second_active(), CONF_STATE_MULTI, and conf_update_user_mute().

◆ leave_unmarked()

static void leave_unmarked ( struct confbridge_user user)
static

Definition at line 69 of file conf_state_single.c.

70{
71 conf_remove_user_active(user->conference, user);
72 if (user->playing_moh) {
74 }
75
76 if (user->conference->waitingusers) {
78 } else {
80 }
81}
void conf_moh_stop(struct confbridge_user *user)
Stop MOH for the conference user.
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_EMPTY
Conference state with no active or waiting users.
struct confbridge_state * CONF_STATE_INACTIVE
Conference state with only waiting users.

References conf_change_state(), conf_moh_stop(), conf_remove_user_active(), CONF_STATE_EMPTY, and CONF_STATE_INACTIVE.

◆ transition_to_single()

static void transition_to_single ( struct confbridge_user user)
static

Definition at line 83 of file conf_state_single.c.

84{
85 conf_mute_only_active(user->conference);
86}
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

struct confbridge_state* CONF_STATE_SINGLE = &STATE_SINGLE

Conference state with only a single unmarked active user.

Definition at line 49 of file conf_state_single.c.

Referenced by join_unmarked(), leave_marked(), and leave_unmarked().

◆ STATE_SINGLE

struct confbridge_state STATE_SINGLE

Definition at line 40 of file conf_state_single.c.