[svn-commits] kpfleming: branch 1.4 r130042 - in /branches/1.4: ./ channels/ configs/ contr...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jul 11 11:08:03 CDT 2008


Author: kpfleming
Date: Fri Jul 11 11:08:03 2008
New Revision: 130042

URL: http://svn.digium.com/view/asterisk?view=rev&rev=130042
Log:
new installations should be using DAHDI instead of Zaptel, so the sample config file is now chan_dahdi.conf instead of zapata.conf

also, convert remaining references to zapata.conf in various places


Added:
    branches/1.4/configs/chan_dahdi.conf.sample
      - copied, changed from r130039, branches/1.4/configs/zapata.conf.sample
Removed:
    branches/1.4/configs/zapata.conf.sample
Modified:
    branches/1.4/README
    branches/1.4/channels/chan_dahdi.c
    branches/1.4/configs/extensions.ael.sample
    branches/1.4/configs/extensions.conf.sample
    branches/1.4/configs/sla.conf.sample
    branches/1.4/configs/smdi.conf.sample
    branches/1.4/contrib/scripts/autosupport
    branches/1.4/doc/ael.txt
    branches/1.4/doc/configuration.txt
    branches/1.4/doc/sla.tex
    branches/1.4/include/asterisk/doxyref.h

Modified: branches/1.4/README
URL: http://svn.digium.com/view/asterisk/branches/1.4/README?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/README (original)
+++ branches/1.4/README Fri Jul 11 11:08:03 2008
@@ -159,7 +159,7 @@
 understand, and do not affect how it is actually parsed.
 
   Entries of the form 'variable=value' set the value of some parameter in
-asterisk.  For example, in zapata.conf, one might specify:
+asterisk.  For example, in chan_dahdi.conf, one might specify:
 
 	switchtype=national
 

Modified: branches/1.4/channels/chan_dahdi.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_dahdi.c?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/channels/chan_dahdi.c (original)
+++ branches/1.4/channels/chan_dahdi.c Fri Jul 11 11:08:03 2008
@@ -162,8 +162,6 @@
                " w/PRI"
 #endif
 ;
-
-static const char config[] = "chan_dahdi.conf";
 
 #define SIG_EM		DAHDI_SIG_EM
 #define SIG_EMWINK 	(0x0100000 | DAHDI_SIG_EM)
@@ -11371,16 +11369,16 @@
 #endif
 
 #ifdef HAVE_ZAPTEL
-	cfg = ast_config_load("zapata.conf");
+	if (!(cfg = ast_config_load("zapata.conf"))) {
+		ast_log(LOG_ERROR, "Unable to load zapata.conf\n");
+		return 0;
+	}
 #else
-	cfg = ast_config_load(config);
-#endif
-	/* Error if we have no config file... */
-	if (!cfg) {
-			ast_log(LOG_ERROR, "Unable to load either config %s or zapata.conf\n", config);
-			return 0;
-	}
-
+	if (!(cfg = ast_config_load("chan_dahdi.conf"))) {
+		ast_log(LOG_ERROR, "Unable to load chan_dahdi.conf\n");
+		return 0;
+	}
+#endif
 	/* It's a little silly to lock it, but we mind as well just to be sure */
 	ast_mutex_lock(&iflock);
 #ifdef HAVE_PRI

Copied: branches/1.4/configs/chan_dahdi.conf.sample (from r130039, branches/1.4/configs/zapata.conf.sample)
URL: http://svn.digium.com/view/asterisk/branches/1.4/configs/chan_dahdi.conf.sample?view=diff&rev=130042&p1=branches/1.4/configs/zapata.conf.sample&r1=130039&p2=branches/1.4/configs/chan_dahdi.conf.sample&r2=130042
==============================================================================
--- branches/1.4/configs/zapata.conf.sample (original)
+++ branches/1.4/configs/chan_dahdi.conf.sample Fri Jul 11 11:08:03 2008
@@ -1,10 +1,10 @@
 ;
-; Zapata telephony interface
+; DAHDI telephony interface
 ;
 ; Configuration file
 ;
-; You need to restart Asterisk to re-configure the Zap channel
-; CLI> reload chan_zap.so 
+; You need to restart Asterisk to re-configure the DAHDI channels
+; CLI> reload chan_dahdi.so 
 ;		will reload the configuration file,
 ;		but not all configuration options are 
 ; 		re-configured during a reload.
@@ -19,7 +19,7 @@
 ;        trunkgroup => <trunkgroup>,<dchannel>[,<backup1>...]
 ;
 ;        trunkgroup  is the numerical trunk group to create
-;        dchannel    is the zap channel which will have the 
+;        dchannel    is the DAHDI channel which will have the 
 ;                    d-channel for the trunk.
 ;        backup1     is an optional list of backup d-channels.
 ;
@@ -27,9 +27,9 @@
 ;trunkgroup => 1,24
 ;
 ; Spanmap: Associates a span with a trunk group
-;        spanmap => <zapspan>,<trunkgroup>[,<logicalspan>]
-;
-;        zapspan     is the zap span number to associate
+;        spanmap => <dahdispan>,<trunkgroup>[,<logicalspan>]
+;
+;        dahdispan   is the DAHDI span number to associate
 ;        trunkgroup  is the trunkgroup (specified above) for the mapping
 ;        logicalspan is the logical span number within the trunk group to use.
 ;                    if unspecified, no logical span number is used.
@@ -348,12 +348,12 @@
 ; Note that when setting the number of taps, the number 256 does not translate
 ; to 256 ms of echo cancellation.  echocancel=256 means 256 / 8 = 32 ms.
 ;
-; Note that if any of your Zaptel cards have hardware echo cancellers,
+; Note that if any of your DAHDI cards have hardware echo cancellers,
 ; then this setting only turns them on and off; numeric settings will
 ; be treated as "yes". There are no special settings required for
 ; hardware echo cancellers; when present and enabled in their kernel
 ; modules, they take precedence over the software echo canceller compiled
-; into Zaptel automatically.
+; into DAHDI automatically.
 ;
 echocancel=yes
 ;
@@ -502,7 +502,7 @@
 ;
 ; FXO (FXS signalled) devices must have a timeout to determine if there was a
 ; hangup before the line was answered.  This value can be tweaked to shorten
-; how long it takes before Zap considers a non-ringing line to have hungup.
+; how long it takes before DAHDI considers a non-ringing line to have hungup.
 ;
 ;ringtimeout=8000
 ;
@@ -537,7 +537,7 @@
 ;mohsuggest=default
 ;
 ; PRI channels can have an idle extension and a minunused number.  So long as
-; at least "minunused" channels are idle, chan_zap will try to call "idledial"
+; at least "minunused" channels are idle, chan_dahdi will try to call "idledial"
 ; on them, and then dump them into the PBX in the "idleext" extension (which
 ; is of the form exten at context).  When channels are needed the "idle" calls
 ; are disconnected (so long as there are at least "minidle" calls still
@@ -551,16 +551,16 @@
 ;minunused=2
 ;minidle=1
 ;
-; Configure jitter buffers in zapata (each one is 20ms, default is 4)
+; Configure jitter buffers in DAHDI (each one is 20ms, default is 4)
 ;
 ;jitterbuffers=4
 ;
 ;------------------------------ JITTER BUFFER CONFIGURATION --------------------------
 ; jbenable = yes              ; Enables the use of a jitterbuffer on the receiving side of a
-                              ; ZAP channel. Defaults to "no". An enabled jitterbuffer will
+                              ; DAHDI channel. Defaults to "no". An enabled jitterbuffer will
                               ; be used only if the sending side can create and the receiving
-                              ; side can not accept jitter. The ZAP channel can't accept jitter,
-                              ; thus an enabled jitterbuffer on the receive ZAP side will always
+                              ; side can not accept jitter. The DAHDI channel can't accept jitter,
+                              ; thus an enabled jitterbuffer on the receive DAHDI side will always
                               ; be used if the sending side can create jitter.
 
 ; jbmaxsize = 200             ; Max length of the jitterbuffer in milliseconds.
@@ -570,7 +570,7 @@
                               ; big jumps in/broken timestamps, usually sent from exotic devices
                               ; and programs. Defaults to 1000.
 
-; jbimpl = fixed              ; Jitterbuffer implementation, used on the receiving side of a ZAP
+; jbimpl = fixed              ; Jitterbuffer implementation, used on the receiving side of a DAHDI
                               ; channel. Two implementations are currently available - "fixed"
                               ; (with size always equals to jbmax-size) and "adaptive" (with
                               ; variable size, actually the new jb of IAX2). Defaults to fixed.

Modified: branches/1.4/configs/extensions.ael.sample
URL: http://svn.digium.com/view/asterisk/branches/1.4/configs/extensions.ael.sample?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/configs/extensions.ael.sample (original)
+++ branches/1.4/configs/extensions.ael.sample Fri Jul 11 11:08:03 2008
@@ -27,7 +27,7 @@
 	TRUNK="Zap/g2";					// Trunk interface
 	//
 	// Note the 'g2' in the TRUNK variable above. It specifies which group (defined
-	// in zapata.conf) to dial, i.e. group 2, and how to choose a channel to use in
+	// in chan_dahdi.conf) to dial, i.e. group 2, and how to choose a channel to use in
 	// the specified group. The four possible options are:
 	//
 	// g: select the lowest-numbered non-busy Zap channel

Modified: branches/1.4/configs/extensions.conf.sample
URL: http://svn.digium.com/view/asterisk/branches/1.4/configs/extensions.conf.sample?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/configs/extensions.conf.sample (original)
+++ branches/1.4/configs/extensions.conf.sample Fri Jul 11 11:08:03 2008
@@ -90,7 +90,7 @@
 TRUNK=Zap/G2					; Trunk interface
 ;
 ; Note the 'G2' in the TRUNK variable above. It specifies which group (defined
-; in zapata.conf) to dial, i.e. group 2, and how to choose a channel to use in
+; in chan_dahdi.conf) to dial, i.e. group 2, and how to choose a channel to use in
 ; the specified group. The four possible options are:
 ;
 ; g: select the lowest-numbered non-busy Zap channel

Modified: branches/1.4/configs/sla.conf.sample
URL: http://svn.digium.com/view/asterisk/branches/1.4/configs/sla.conf.sample?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/configs/sla.conf.sample (original)
+++ branches/1.4/configs/sla.conf.sample Fri Jul 11 11:08:03 2008
@@ -29,7 +29,7 @@
 
 ;autocontext=line1          ; This supports automatic generation of the dialplan entries 
                             ; if the autocontext option is used.  Each trunk should have 
-                            ; a unique context name.  Then, in zapata.conf, this device 
+                            ; a unique context name.  Then, in chan_dahdi.conf, this device 
                             ; should be configured to have incoming calls go to this context.
 
 ;ringtimeout=30             ; Set how long to allow this trunk to ring on an inbound call before hanging 

Modified: branches/1.4/configs/smdi.conf.sample
URL: http://svn.digium.com/view/asterisk/branches/1.4/configs/smdi.conf.sample?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/configs/smdi.conf.sample (original)
+++ branches/1.4/configs/smdi.conf.sample Fri Jul 11 11:08:03 2008
@@ -2,7 +2,7 @@
 
 [interfaces]
 ; Specify serial ports to listen for SMDI messages on below.  These will be
-; referenced later in zapata.conf.  If you do not specify any interfaces then
+; referenced later in chan_dahdi.conf.  If you do not specify any interfaces then
 ; SMDI will be disabled.  Interfaces can have several different attributes
 ; associated with them.
 

Modified: branches/1.4/contrib/scripts/autosupport
URL: http://svn.digium.com/view/asterisk/branches/1.4/contrib/scripts/autosupport?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/contrib/scripts/autosupport (original)
+++ branches/1.4/contrib/scripts/autosupport Fri Jul 11 11:08:03 2008
@@ -160,6 +160,13 @@
   echo "ZAPATA CONFIG" >> $OUTPUT;
   echo "------------------" >> $OUTPUT;
   grep -v '^;' /etc/asterisk/zapata.conf >> $OUTPUT;
+  echo >> $OUTPUT;
+  echo >> $OUTPUT;
+
+  echo "------------------" >> $OUTPUT;
+  echo "DAHDI CONFIG" >> $OUTPUT;
+  echo "------------------" >> $OUTPUT;
+  grep -v '^;' /etc/asterisk/chan_dahdi.conf >> $OUTPUT;
   echo >> $OUTPUT;
   echo >> $OUTPUT;
 

Modified: branches/1.4/doc/ael.txt
URL: http://svn.digium.com/view/asterisk/branches/1.4/doc/ael.txt?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/doc/ael.txt (original)
+++ branches/1.4/doc/ael.txt Fri Jul 11 11:08:03 2008
@@ -48,7 +48,7 @@
 Asterisk acts as a server. Devices involved in telephony, like Zapata
 cards, or Voip phones, all indicate some context that should be
 activated in their behalf. See the config file formats for IAX, SIP,
-zapata.conf, etc. They all help describe a device, and they all
+chan_dahdi.conf, etc. They all help describe a device, and they all
 specify a context to activate when somebody picks up a phone, or a
 call comes in from the phone company, or a voip phone, etc.
 

Modified: branches/1.4/doc/configuration.txt
URL: http://svn.digium.com/view/asterisk/branches/1.4/doc/configuration.txt?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/doc/configuration.txt (original)
+++ branches/1.4/doc/configuration.txt Fri Jul 11 11:08:03 2008
@@ -18,7 +18,7 @@
 	label = value
 	label2 = value
 
-In some files, (e.g. mgcp.conf, zapata.conf and agents.conf), the syntax
+In some files, (e.g. mgcp.conf, chan_dahdi.conf and agents.conf), the syntax
 is a bit different. In these files the syntax is as follows:
 	
 	[section]

Modified: branches/1.4/doc/sla.tex
URL: http://svn.digium.com/view/asterisk/branches/1.4/doc/sla.tex?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/doc/sla.tex (original)
+++ branches/1.4/doc/sla.tex Fri Jul 11 11:08:03 2008
@@ -23,7 +23,7 @@
 An SLA system is built up of virtual trunks and stations mapped to real
 Asterisk devices.  The configuration for all of this is done in three
 different files: extensions.conf, sla.conf, and the channel specific
-configuration file such as sip.conf or zapata.conf.
+configuration file such as sip.conf or chan_dahdi.conf.
 
 \subsection{Dialplan}
 
@@ -55,7 +55,7 @@
 An SLA trunk is a mapping between a virtual trunk and a real Asterisk device.
 This device may be an analog FXO line, or something like a SIP trunk.  A trunk
 must be configured in two places.  First, configure the device itself in the
-channel specific configuration file such as zapata.conf or sip.conf.  Once the
+channel specific configuration file such as chan_dahdi.conf or sip.conf.  Once the
 trunk is configured, then map it to an SLA trunk in sla.conf.  
 
 \begin{verbatim}
@@ -66,7 +66,7 @@
 
 Be sure to configure the trunk's context to be the same one that is set for the
 "autocontext" option in sla.conf if automatic dialplan configuration is used.
-This would be done in the regular device entry in zapata.conf, sip.conf, etc.
+This would be done in the regular device entry in chan_dahdi.conf, sip.conf, etc.
 Note that the automatic dialplan generation creates the SLATrunk() extension
 at extension 's'.  This is perfect for Zap channels that are FXO trunks, for
 example.  However, it may not be good enough for an IP trunk, since the call
@@ -195,7 +195,7 @@
 
 With this configuration, the dialplan is generated automatically.  The first
 zap channel should have its context set to "line1" and the second should be
-set to "line2" in zapata.conf.  In sip.conf, station1, station2, and station3
+set to "line2" in chan_dahdi.conf.  In sip.conf, station1, station2, and station3
 should all have their context set to "sla\_stations".
 
 For reference, here is the automatically generated dialplan for this situation:
@@ -238,7 +238,7 @@
 are Zap/1 and Zap/2.  The stations are SIP/station1, SIP/station2, and
 SIP/station3.
 
-In zapata.conf, channel 1 has context=line1 and channel 2 has context=line2.
+In chan_dahdi.conf, channel 1 has context=line1 and channel 2 has context=line2.
 
 In sip.conf, all three stations are configured with context=sla\_stations.
 

Modified: branches/1.4/include/asterisk/doxyref.h
URL: http://svn.digium.com/view/asterisk/branches/1.4/include/asterisk/doxyref.h?view=diff&rev=130042&r1=130041&r2=130042
==============================================================================
--- branches/1.4/include/asterisk/doxyref.h (original)
+++ branches/1.4/include/asterisk/doxyref.h Fri Jul 11 11:08:03 2008
@@ -274,9 +274,9 @@
  */
 
 /*! \page Config_zap Zaptel configuration
- * \section zapconf zapata.conf
+ * \section zapconf chan_dahdi.conf
  * \arg Implemented in \ref chan_zap.c
- * \verbinclude zapata.conf.sample
+ * \verbinclude chan_dahdi.conf.sample
  */
 
 /*! \page Config_h323 H.323 channel driver information




More information about the svn-commits mailing list