Asterisk - The Open Source Telephony Project GIT-master-2de1a68
cli_functions.h
Go to the documentation of this file.
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/*!
18 * \file
19 *
20 * \author \verbatim George Joseph <george.joseph@fairview5.com> \endverbatim
21 *
22 * \brief PJSIP CLI functions header file
23 */
24
25#ifndef _PJSIP_CLI_FUNCTIONS
26#define _PJSIP_CLI_FUNCTIONS
27
28
29/*!
30 * \brief Registers the channel cli commands
31 * \since 13.9.0
32 *
33 * \retval 0 on success
34 * \retval -1 on failure
35 */
37
38/*!
39 * \brief Unregisters the channel cli commands
40 * \since 13.9.0
41 */
43
44
45#endif /* _PJSIP_CLI_FUNCTIONS */
int pjsip_channel_cli_register(void)
Registers the channel cli commands.
Definition: cli_commands.c:462
void pjsip_channel_cli_unregister(void)
Unregisters the channel cli commands.
Definition: cli_commands.c:498