From 4fe4a738fd4f10f57951d1ce9915389174c0921f Mon Sep 17 00:00:00 2001 From: minima Date: Mon, 22 Jan 2007 22:35:28 +0000 Subject: [PATCH] disable propagation of PC9x sentences --- Changes | 2 ++ perl/DXProt.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index f4bc2d82..2188d2d3 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +22Jan06======================================================================= +1. disable default propagation of PC9x sentences 16Jan06======================================================================= 1. back ported a change to PC16 handling so that a locally connected node's info clears out and generally overrides any residual PC16 info gathered from diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 7a9e4ca1..a6abadc8 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -357,7 +357,7 @@ sub normal # process PC frames, this will fail unless the frame starts PCnn my ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number - unless (defined $pcno && $pcno >= 10 && $pcno <= 99) { + unless (defined $pcno && $pcno >= 10 && $pcno <= 89) { # reject PC9x messages dbg("PCPROT: unknown protocol") if isdbg('chanerr'); return; } -- 2.34.1