|
|
@ -38,7 +38,6 @@
|
|
|
|
static void join_unmarked(struct confbridge_user *user);
|
|
|
|
static void join_unmarked(struct confbridge_user *user);
|
|
|
|
static void join_marked(struct confbridge_user *user);
|
|
|
|
static void join_marked(struct confbridge_user *user);
|
|
|
|
static void leave_waitmarked(struct confbridge_user *user);
|
|
|
|
static void leave_waitmarked(struct confbridge_user *user);
|
|
|
|
static void transition_to_inactive(struct confbridge_user *user);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct confbridge_state STATE_INACTIVE = {
|
|
|
|
struct confbridge_state STATE_INACTIVE = {
|
|
|
|
.name = "INACTIVE",
|
|
|
|
.name = "INACTIVE",
|
|
|
@ -46,7 +45,6 @@ struct confbridge_state STATE_INACTIVE = {
|
|
|
|
.join_waitmarked = conf_default_join_waitmarked,
|
|
|
|
.join_waitmarked = conf_default_join_waitmarked,
|
|
|
|
.join_marked = join_marked,
|
|
|
|
.join_marked = join_marked,
|
|
|
|
.leave_waitmarked = leave_waitmarked,
|
|
|
|
.leave_waitmarked = leave_waitmarked,
|
|
|
|
.entry = transition_to_inactive,
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
struct confbridge_state *CONF_STATE_INACTIVE = &STATE_INACTIVE;
|
|
|
|
struct confbridge_state *CONF_STATE_INACTIVE = &STATE_INACTIVE;
|
|
|
|
|
|
|
|
|
|
|
@ -73,8 +71,3 @@ static void leave_waitmarked(struct confbridge_user *user)
|
|
|
|
conf_change_state(user, CONF_STATE_EMPTY);
|
|
|
|
conf_change_state(user, CONF_STATE_EMPTY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void transition_to_inactive(struct confbridge_user *user)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|