summaryrefslogtreecommitdiff
path: root/apps/confbridge/conf_state_inactive.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-03-09 00:21:46 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-03-09 00:21:46 +0000
commit761465d6425fa0c5ce61095fe45588292ead1b15 (patch)
treed2421cbcfc5b3b2dcaaea1d04b4c515ef740c365 /apps/confbridge/conf_state_inactive.c
parentb4a010e958226d21750a5a1797bf50f22898e974 (diff)
confbridge: Rename items for clarity and consistency.
struct conference_bridge_user -> struct confbridge_user struct conference_bridge -> struct confbridge_conference struct conference_state -> struct confbridge_state struct conference_bridge_user *conference_bridge_user -> struct confbridge_user *user struct conference_bridge_user *cbu -> struct confbridge_user *user struct conference_bridge *conference_bridge -> struct confbridge_conference *conference The names are now generally shorter, consistently used, and don't conflict with the struct names. This patch handles the renaming part of the issue. (issue ASTERISK-20776) Reported by: rmudgett git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@382764 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/confbridge/conf_state_inactive.c')
-rw-r--r--apps/confbridge/conf_state_inactive.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/apps/confbridge/conf_state_inactive.c b/apps/confbridge/conf_state_inactive.c
index 80210fcb8..28447983d 100644
--- a/apps/confbridge/conf_state_inactive.c
+++ b/apps/confbridge/conf_state_inactive.c
@@ -35,12 +35,12 @@
#include "include/confbridge.h"
#include "include/conf_state.h"
-static void join_unmarked(struct conference_bridge_user *cbu);
-static void join_marked(struct conference_bridge_user *cbu);
-static void leave_waitmarked(struct conference_bridge_user *cbu);
-static void transition_to_inactive(struct conference_bridge_user *cbu);
+static void join_unmarked(struct confbridge_user *user);
+static void join_marked(struct confbridge_user *user);
+static void leave_waitmarked(struct confbridge_user *user);
+static void transition_to_inactive(struct confbridge_user *user);
-struct conference_state STATE_INACTIVE = {
+struct confbridge_state STATE_INACTIVE = {
.name = "INACTIVE",
.join_unmarked = join_unmarked,
.join_waitmarked = conf_default_join_waitmarked,
@@ -48,33 +48,33 @@ struct conference_state STATE_INACTIVE = {
.leave_waitmarked = leave_waitmarked,
.entry = transition_to_inactive,
};
-struct conference_state *CONF_STATE_INACTIVE = &STATE_INACTIVE;
+struct confbridge_state *CONF_STATE_INACTIVE = &STATE_INACTIVE;
-static void join_unmarked(struct conference_bridge_user *cbu)
+static void join_unmarked(struct confbridge_user *user)
{
- conf_add_user_active(cbu->conference_bridge, cbu);
- conf_add_post_join_action(cbu, conf_handle_only_unmarked);
+ conf_add_user_active(user->conference, user);
+ conf_add_post_join_action(user, conf_handle_only_unmarked);
- conf_change_state(cbu, CONF_STATE_SINGLE);
+ conf_change_state(user, CONF_STATE_SINGLE);
}
-static void join_marked(struct conference_bridge_user *cbu)
+static void join_marked(struct confbridge_user *user)
{
- conf_add_user_marked(cbu->conference_bridge, cbu);
- conf_handle_second_active(cbu->conference_bridge);
+ conf_add_user_marked(user->conference, user);
+ conf_handle_second_active(user->conference);
- conf_change_state(cbu, CONF_STATE_MULTI_MARKED);
+ conf_change_state(user, CONF_STATE_MULTI_MARKED);
}
-static void leave_waitmarked(struct conference_bridge_user *cbu)
+static void leave_waitmarked(struct confbridge_user *user)
{
- conf_remove_user_waiting(cbu->conference_bridge, cbu);
- if (cbu->conference_bridge->waitingusers == 0) {
- conf_change_state(cbu, CONF_STATE_EMPTY);
+ conf_remove_user_waiting(user->conference, user);
+ if (user->conference->waitingusers == 0) {
+ conf_change_state(user, CONF_STATE_EMPTY);
}
}
-static void transition_to_inactive(struct conference_bridge_user *cbu)
+static void transition_to_inactive(struct confbridge_user *user)
{
return;
}