mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
A great big renaming patch
This patch renames the bridging* files to bridge*. This may seem pedantic and silly, but it fits better in line with current Asterisk naming conventions: * channel is not "channeling" * monitor is not "monitoring" etc. A bridge is an object. It is a first class citizen in Asterisk. "Bridging" is the act of using a bridge on a set of channels - and the API that fulfills that role is more than just the action. (closes issue ASTERISK-22130) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@395378 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -69,9 +69,9 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "asterisk/bridging_features.h"
|
||||
#include "asterisk/bridging_channel.h"
|
||||
#include "asterisk/bridging_roles.h"
|
||||
#include "asterisk/bridge_features.h"
|
||||
#include "asterisk/bridge_channel.h"
|
||||
#include "asterisk/bridge_roles.h"
|
||||
#include "asterisk/dsp.h"
|
||||
#include "asterisk/uuid.h"
|
||||
|
@@ -53,7 +53,7 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "asterisk/bridging_technology.h"
|
||||
#include "asterisk/bridge_technology.h"
|
||||
|
||||
/*! \brief State information about a bridged channel */
|
||||
enum bridge_channel_state {
|
@@ -31,7 +31,7 @@
|
||||
|
||||
#include "asterisk/astobj2.h"
|
||||
#include "asterisk/channel.h"
|
||||
#include "asterisk/bridging.h"
|
||||
#include "asterisk/bridge.h"
|
||||
#include "asterisk/abstract_jb.h"
|
||||
|
||||
#if defined(__cplusplus) || defined(c_plusplus)
|
||||
|
@@ -53,7 +53,7 @@
|
||||
-# \ref ArchConceptBridging
|
||||
-# \ref ArchCodeFlows
|
||||
-# \ref ArchCodeFlowPlayback
|
||||
-# \ref ArchCodeFlowBridge
|
||||
-# \ref ArchCodeFlowBridge
|
||||
-# \ref ArchDataStructures
|
||||
-# \ref ArchAstobj2
|
||||
-# \ref ArchLinkedLists
|
||||
@@ -258,11 +258,14 @@ in the source tree.
|
||||
For a list of bridge technology implementations, see \ref bridges.
|
||||
|
||||
For additional information on the bridging API, see
|
||||
<code>include/asterisk/bridging.h</code> and
|
||||
<code>include/asterisk/bridging_technology.h</code>.
|
||||
\arg <code>include/asterisk/bridge.h</code>
|
||||
\arg <code>include/asterisk/bridge_technology.h</code>
|
||||
\arg <code>include/asterisk/bridge_channel.h</code>
|
||||
\arg <code>include/asterisk/bridge_features.h</code>
|
||||
\arg <code>include/asterisk/bridge_after.h</code>
|
||||
|
||||
For additional implementation details regarding the core bridging API, see
|
||||
<code>main/bridging.c</code>.
|
||||
<code>main/bridging.c</code> and <code>main/bridging_channel.c</code>.
|
||||
|
||||
\subsection ArchInterfaceCDR Call Detail Record (CDR) Handlers
|
||||
|
||||
@@ -436,7 +439,7 @@ Asterisk CLI operates using connections to a UNIX %domain socket.
|
||||
There are other miscellaneous threads throughout the system that perform a specific task.
|
||||
For example, the event API (include/asterisk/event.h) uses a thread internally
|
||||
(main/event.c) to handle asychronous event dispatching. The devicestate API
|
||||
(include/asterisk/devicestate.h) uses a thread internally (main/devicestate.c)
|
||||
(include/asterisk/devicestate.h) uses a thread internally (main/devicestate.c)
|
||||
to asynchronously process device state changes.
|
||||
|
||||
|
||||
|
@@ -26,7 +26,7 @@
|
||||
|
||||
#include "asterisk/pbx.h"
|
||||
#include "asterisk/linkedlists.h"
|
||||
#include "asterisk/bridging.h"
|
||||
#include "asterisk/bridge.h"
|
||||
|
||||
#define FEATURE_MAX_LEN 11
|
||||
#define FEATURE_APP_LEN 64
|
||||
|
@@ -28,7 +28,7 @@ extern "C" {
|
||||
#include "asterisk/lock.h"
|
||||
#include "asterisk/linkedlists.h"
|
||||
#include "asterisk/channel.h"
|
||||
#include "asterisk/bridging.h"
|
||||
#include "asterisk/bridge.h"
|
||||
#include "asterisk/pbx.h"
|
||||
|
||||
/*!
|
Reference in New Issue
Block a user