extract_asn1_from_spec.pl: add support for M2AP and M3AP specs

This commit is contained in:
Pascal Quantin 2023-01-11 12:52:23 +01:00
parent 20a8a8eb0f
commit 92d4052cf8
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ close(INPUT_FILE);
sub extract_spec_version {
my $line;
while($line = <INPUT_FILE>){
if($line =~ m/3GPP TS ((25|36|38)\.331|(36|37)\.355|(36|38)\.413|(36|38)\.423|(36|38)\.455|38\.463|38\.473|37\.483) V/){
if($line =~ m/3GPP TS ((25|36|38)\.331|(36|37)\.355|(36|38)\.413|(36|38)\.423|36\.(443|444)|(36|38)\.455|38\.463|38\.473|37\.483) V/){
$version = $line;
return;
}