2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
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.
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.
21 * \brief Echo application -- play back what you hear to evaluate latency
23 * \author Mark Spencer <markster@digium.com>
25 * \ingroup applications
29 <support_level>core</support_level>
34 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
36 #include "asterisk/file.h"
37 #include "asterisk/module.h"
38 #include "asterisk/channel.h"
41 <application name="Echo" language="en_US">
43 Echo audio, video, DTMF back to the calling party
47 <para>Echos back any audio, video or DTMF frames read from the calling
48 channel back to itself. Note: If '#' detected application exits</para>
49 <para>This application does not automatically answer and should be
50 preceeded by an application such as Answer() or Progress().</para>
55 static const char app[] = "Echo";
57 static int echo_exec(struct ast_channel *chan, const char *data)
60 struct ast_format format;
62 ast_best_codec(ast_channel_nativeformats(chan), &format);
63 ast_set_write_format(chan, &format);
64 ast_set_read_format(chan, &format);
66 while (ast_waitfor(chan, -1) > -1) {
67 struct ast_frame *f = ast_read(chan);
71 f->delivery.tv_sec = 0;
72 f->delivery.tv_usec = 0;
73 if (ast_write(chan, f)) {
77 if ((f->frametype == AST_FRAME_DTMF) && (f->subclass.integer == '#')) {
88 static int unload_module(void)
90 return ast_unregister_application(app);
93 static int load_module(void)
95 return ast_register_application_xml(app, echo_exec);
98 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Simple Echo Application");