conf_state_multi.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2012, Terry Wilson
  5. *
  6. * Terry Wilson <twilson@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. *
  18. * Please follow coding guidelines
  19. * http://svn.digium.com/view/asterisk/trunk/doc/CODING-GUIDELINES
  20. */
  21. /*! \file
  22. *
  23. * \brief Confbridge state handling for the MULTI state
  24. *
  25. * \author\verbatim Terry Wilson <twilson@digium.com> \endverbatim
  26. *
  27. * \ingroup applications
  28. */
  29. /*** MODULEINFO
  30. <support_level>core</support_level>
  31. ***/
  32. #include "include/confbridge.h"
  33. #include "include/conf_state.h"
  34. static void join_unmarked(struct confbridge_user *user);
  35. static void join_marked(struct confbridge_user *user);
  36. static void leave_unmarked(struct confbridge_user *user);
  37. struct confbridge_state STATE_MULTI = {
  38. .name = "MULTI",
  39. .join_unmarked = join_unmarked,
  40. .join_waitmarked = conf_default_join_waitmarked,
  41. .join_marked = join_marked,
  42. .leave_unmarked = leave_unmarked,
  43. .leave_waitmarked = conf_default_leave_waitmarked,
  44. };
  45. struct confbridge_state *CONF_STATE_MULTI = &STATE_MULTI;
  46. static void join_unmarked(struct confbridge_user *user)
  47. {
  48. conf_add_user_active(user->conference, user);
  49. conf_update_user_mute(user);
  50. }
  51. static void join_marked(struct confbridge_user *user)
  52. {
  53. conf_add_user_marked(user->conference, user);
  54. conf_update_user_mute(user);
  55. conf_change_state(user, CONF_STATE_MULTI_MARKED);
  56. }
  57. static void leave_unmarked(struct confbridge_user *user)
  58. {
  59. conf_remove_user_active(user->conference, user);
  60. if (user->conference->activeusers == 1) {
  61. conf_change_state(user, CONF_STATE_SINGLE);
  62. }
  63. }