disable propagation of PC9x sentences
authorminima <minima>
Mon, 22 Jan 2007 22:35:28 +0000 (22:35 +0000)
committerminima <minima>
Mon, 22 Jan 2007 22:35:28 +0000 (22:35 +0000)
Changes
perl/DXProt.pm

diff --git a/Changes b/Changes
index f4bc2d823f6e64722718a259d6d21dd1ff5c173a..2188d2d35ef3b31599b9524ba61c4d98b2102b9e 100644 (file)
--- 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
index 7a9e4ca15f108f0374fdcee54eb91d856082584b..a6abadc83ab1384936093c0954f11fce13a19f9d 100644 (file)
@@ -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;
        }