cli_functions.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2016, Fairview 5 Engineering, LLC.
  5. *
  6. * See http://www.asterisk.org for more information about
  7. * the Asterisk project. Please do not directly contact
  8. * any of the maintainers of this project for assistance;
  9. * the project provides a web site, mailing lists and IRC
  10. * channels for your use.
  11. *
  12. * This program is free software, distributed under the terms of
  13. * the GNU General Public License Version 2. See the LICENSE file
  14. * at the top of the source tree.
  15. */
  16. /*!
  17. * \file
  18. *
  19. * \author \verbatim George Joseph <george.joseph@fairview5.com> \endverbatim
  20. *
  21. * \brief PJSIP CLI functions header file
  22. */
  23. #ifndef _PJSIP_CLI_FUNCTIONS
  24. #define _PJSIP_CLI_FUNCTIONS
  25. /*!
  26. * \brief Registers the channel cli commands
  27. * \since 13.9.0
  28. *
  29. * \retval 0 on success
  30. * \retval -1 on failure
  31. */
  32. int pjsip_channel_cli_register(void);
  33. /*!
  34. * \brief Unregisters the channel cli commands
  35. * \since 13.9.0
  36. */
  37. void pjsip_channel_cli_unregister(void);
  38. #endif /* _PJSIP_CLI_FUNCTIONS */