Asterisk - The Open Source Telephony Project GIT-master-2de1a68
bridge_native_dahdi.h
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 2013 Digium, Inc.
5 *
6 * Richard Mudgett <rmudgett@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
19/*!
20 * \file
21 * \brief Native DAHDI bridging support.
22 *
23 * \author Richard Mudgett <rmudgett@digium.com>
24 *
25 * See Also:
26 * \arg \ref AstCREDITS
27 */
28
29#ifndef _ASTERISK_BRIDGE_NATIVE_DAHDI_H
30#define _ASTERISK_BRIDGE_NATIVE_DAHDI_H
31
32#if defined(__cplusplus) || defined(c_plusplus)
33extern "C" {
34#endif
35
36/* ------------------------------------------------------------------- */
37
38void dahdi_native_unload(void);
39int dahdi_native_load(const struct ast_channel_tech *tech);
40
41/* ------------------------------------------------------------------- */
42
43#if defined(__cplusplus) || defined(c_plusplus)
44}
45#endif
46
47#endif /* _ASTERISK_BRIDGE_NATIVE_DAHDI_H */
void dahdi_native_unload(void)
int dahdi_native_load(const struct ast_channel_tech *tech)
Structure to describe a channel "technology", ie a channel driver See for examples:
Definition: channel.h:628