|
Asterisk - The Open Source Telephony Project GIT-master-9647a4f
|
Confbridge state handling. More...

Go to the source code of this file.
Data Structures | |
| struct | confbridge_state |
| A conference state object to hold the various state callback functions. More... | |
Typedefs | |
| typedef void(* | conference_entry_fn) (struct confbridge_user *user) |
| typedef void(* | conference_event_fn) (struct confbridge_user *user) |
| typedef void(* | conference_exit_fn) (struct confbridge_user *user) |
Functions | |
| void | conf_change_state (struct confbridge_user *user, struct confbridge_state *newstate) |
| Execute conference state transition because of a user action. | |
| void | conf_default_join_waitmarked (struct confbridge_user *user) |
| Logic to execute every time a waitmarked user joins an unmarked conference. | |
| void | conf_default_leave_waitmarked (struct confbridge_user *user) |
| Logic to execute every time a waitmarked user leaves an unmarked conference. | |
| void | conf_invalid_event_fn (struct confbridge_user *user) |
| A handler for join/leave events that are invalid in a particular state. | |
Variables | |
| 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. | |
| struct confbridge_state * | CONF_STATE_MULTI |
| Conference state with multiple active users, but no marked users. | |
| struct confbridge_state * | CONF_STATE_MULTI_MARKED |
| Conference state with multiple active users and at least one marked user. | |
| struct confbridge_state * | CONF_STATE_SINGLE |
| Conference state with only a single unmarked active user. | |
| struct confbridge_state * | CONF_STATE_SINGLE_MARKED |
| Conference state with only a single marked active user. | |
Confbridge state handling.
See https://docs.asterisk.org/Development/Reference-Information/Other-Reference-Information/Confbridge-state-changes/ for a more complete description of how conference states work.
Definition in file conf_state.h.
| typedef void(* conference_entry_fn) (struct confbridge_user *user) |
Definition at line 41 of file conf_state.h.
| typedef void(* conference_event_fn) (struct confbridge_user *user) |
Definition at line 40 of file conf_state.h.
| typedef void(* conference_exit_fn) (struct confbridge_user *user) |
Definition at line 42 of file conf_state.h.
| void conf_change_state | ( | struct confbridge_user * | user, |
| struct confbridge_state * | newstate | ||
| ) |
Execute conference state transition because of a user action.
| user | The user that joined/left |
| newstate | The state to transition to |
Definition at line 77 of file conf_state.c.
References ast_debug, ast_test_suite_event_notify, and confbridge_state::name.
Referenced by join_active(), join_marked(), join_marked(), join_marked(), join_marked(), join_marked(), join_unmarked(), join_unmarked(), join_unmarked(), join_waitmarked(), leave_active(), leave_marked(), leave_marked(), leave_unmarked(), leave_unmarked(), and leave_waitmarked().
| void conf_default_join_waitmarked | ( | struct confbridge_user * | user | ) |
Logic to execute every time a waitmarked user joins an unmarked conference.
Definition at line 62 of file conf_state.c.
References conf_add_post_join_action(), conf_add_user_waiting(), conf_handle_inactive_waitmarked(), and conf_mute_moh_inactive_waitmarked().
Referenced by join_waitmarked().
| void conf_default_leave_waitmarked | ( | struct confbridge_user * | user | ) |
Logic to execute every time a waitmarked user leaves an unmarked conference.
Definition at line 69 of file conf_state.c.
References conf_moh_stop(), and conf_remove_user_waiting().
Referenced by leave_waitmarked().
| void conf_invalid_event_fn | ( | struct confbridge_user * | user | ) |
A handler for join/leave events that are invalid in a particular state.
Definition at line 42 of file conf_state.c.
References ast_log, and LOG_ERROR.
Referenced by handle_conf_user_join(), and handle_conf_user_leave().
|
extern |
Conference state with no active or waiting users.
Definition at line 50 of file conf_state_empty.c.
Referenced by join_conference_bridge(), leave_marked(), leave_marked(), leave_unmarked(), and leave_waitmarked().
|
extern |
Conference state with only waiting users.
Definition at line 46 of file conf_state_inactive.c.
Referenced by join_waitmarked(), leave_marked(), and leave_unmarked().
|
extern |
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().
|
extern |
Conference state with multiple active users and at least one marked user.
Definition at line 56 of file conf_state_multi_marked.c.
Referenced by join_active(), join_marked(), join_marked(), join_marked(), and join_marked().
|
extern |
Conference state with only a single unmarked active user.
Definition at line 49 of file conf_state_single.c.
Referenced by join_unmarked(), join_unmarked(), leave_marked(), and leave_unmarked().
|
extern |
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().