[Pkg-voip-commits] [dahdi-tools] 47/285: dahdi_genconf: Assume spans with unknown term types are software selectable.

tzafrir at debian.org tzafrir at debian.org
Thu Jul 7 19:18:27 UTC 2016


This is an automated email from the git hooks/post-receive script.

tzafrir pushed a commit to branch master
in repository dahdi-tools.

commit db9b649e030bfadbea87227ca7b38fbfa167ed88
Author: Shaun Ruffell <sruffell at digium.com>
Date:   Thu Sep 29 17:00:46 2011 +0000

    dahdi_genconf: Assume spans with unknown term types are software selectable.
    
    Resolves a regression on the 2.5 branch that would result in:
    
      $ dahdi_genconf
      dahdi_genconf: missing default group (termtype=UNKNOWN)
    
    E1 / T1 spans use software configuration to set CPE / NET mode. This
    patch will just assume that a termtype is software selectable if it was
    "UNKNOWN" when first scanning the span.
    
    Internal-Issue-ID: DAHTOOL-55
    Signed-off-by: Shaun Ruffell <sruffell at digium.com>
    Tested-by: David Purdue <support at noojee.com.au>
    
    git-svn-id: http://svn.astersk.org/svn/dahdi/tools/trunk@10213 17933a7a-c749-41c5-a318-cba88f637d49
---
 xpp/perl_modules/Dahdi/Span.pm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/xpp/perl_modules/Dahdi/Span.pm b/xpp/perl_modules/Dahdi/Span.pm
index cf38c80..beea6af 100644
--- a/xpp/perl_modules/Dahdi/Span.pm
+++ b/xpp/perl_modules/Dahdi/Span.pm
@@ -191,6 +191,7 @@ sub new($$) {
 	$self->{IS_DIGITAL} = 0;
 	$self->{IS_BRI} = 0;
 	$self->{IS_PRI} = 0;
+	$self->{TERMTYPE} = "UNKNOWN";
 	foreach my $cardtype (@bri_strings) {
 		if($head =~ m/$cardtype/) {
 			my $termtype = $1;
@@ -230,6 +231,11 @@ sub new($$) {
 			last;
 		}
 	}
+
+	if (($self->is_soft_term_type == 0) and ($self->termtype eq "UNKNOWN")) {
+		$self->{IS_SOFT_TERM_TYPE} = 1;
+	}
+
 	($self->{NAME}, $self->{DESCRIPTION}) = (split(/\s+/, $head, 4))[2, 3];
 	$self->{IS_DAHDI_SYNC_MASTER} =
 		($self->{DESCRIPTION} =~ /\(MASTER\)/) ? 1 : 0;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-voip/dahdi-tools.git



More information about the Pkg-voip-commits mailing list