This file is indexed.

/usr/include/asterisk/mixmonitor.h is in asterisk-dev 1:13.14.1~dfsg-2+deb9u4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
/*
 * Asterisk -- An open source telephony toolkit.
 *
 * Copyright (C) 2013, Digium, Inc.
 *
 * Jonathan Rose <jrose@digium.com>
 *
 * See http://www.asterisk.org for more information about
 * the Asterisk project. Please do not directly contact
 * any of the maintainers of this project for assistance;
 * the project provides a web site, mailing lists and IRC
 * channels for your use.
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License Version 2. See the LICENSE file
 * at the top of the source tree.
 */

/*! \file
 *
 * \brief loadable MixMonitor functionality
 *
 * \author Jonathan Rose <jrose@digium.com>
 */

/*!
 * \brief Start a mixmonitor on a channel.
 * \since 12.0.0
 *
 * \param chan Which channel to put the MixMonitor on
 * \param filename What the name of the file should be
 * \param options What options should be used for the mixmonitor
 *
 * \retval 0 on success
 * \retval non-zero on failure
 */
typedef int (*ast_mixmonitor_start_fn)(struct ast_channel *chan, const char *filename, const char *options);

/*!
 * \brief Stop a mixmonitor on a channel.
 * \since 12.0.0
 *
 * \param chan Which channel to stop a MixMonitor on
 * \param mixmon_id Stop the MixMonitor with this mixmonid if it is on the channel (may be NULL)
 *
 * \retval 0 on success
 * \retval non-zero on failure
 */
typedef int (*ast_mixmonitor_stop_fn)(struct ast_channel *chan, const char *mixmon_id);

/*!
 * \brief MixMonitor virtual methods table definition
 * \since 12.0.0
 */
struct ast_mixmonitor_methods {
	ast_mixmonitor_start_fn start;
	ast_mixmonitor_stop_fn stop;
};

/*!
 * \brief Setup MixMonitor virtual methods table. Use this to provide the MixMonitor functionality from a loadable module.
 * \since 12.0.0
 *
 * \param vmethod_table pointer to vmethod table providing mixmonitor functions
 *
 * \retval 0 if successful
 * \retval non-zero on failure
 */
int ast_set_mixmonitor_methods(struct ast_mixmonitor_methods *vmethod_table);

/*!
 * \brief Clear the MixMonitor virtual methods table. Use this to cleanup function pointers provided by a module that set.
 * \since 12.0.0
 *
 * \retval 0 if successful
 * \retval non-zero on failure (occurs when methods aren't loaded)
 */
int ast_clear_mixmonitor_methods(void);

/*!
 * \brief Start a mixmonitor on a channel with the given parameters
 * \since 12.0.0
 *
 * \param chan Which channel to apply the MixMonitor to
 * \param filename filename to use for the recording
 * \param options Optional arguments to be interpreted by the MixMonitor start function
 *
 * \retval 0 if successful
 * \retval non-zero on failure
 *
 * \note This function will always fail is nothing has set the mixmonitor methods
 */
int ast_start_mixmonitor(struct ast_channel *chan, const char *filename, const char *options);

/*!
 * \brief Stop a mixmonitor on a channel with the given parameters
 * \since 12.0.0
 *
 * \param chan Which channel to stop a MixMonitor on (may be NULL if mixmon_id is provided)
 * \param mixmon_id Which mixmon_id should be stopped (may be NULL if chan is provided)
 *
 * \retval 0 if successful
 * \retval non-zero on failure
 */
int ast_stop_mixmonitor(struct ast_channel *chan, const char *mixmon_id);