LPP: upgrade dissector to 37.355 v15.0.0

3GPP decided to transfer the specification from 36.355 to 37.355 now that it
covers NR also. 37.355 v15.0.0 is equivalent to 36.355 v15.5.0.

Change-Id: I63aba21f55861ffd8a5c0adbd307b0453482baaa
Reviewed-on: https://code.wireshark.org/review/35613
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
This commit is contained in:
Pascal Quantin 2019-12-31 17:51:41 +01:00
parent 6d5c749785
commit f8aa0d5c02
6 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
-- 3GPP TS 36.355 V15.5.0 (2019-09)
-- 3GPP TS 37.355 V15.0.0 (2019-12)
--
LPP-PDU-Definitions {
@ -2913,7 +2913,7 @@ GNSS-GenericAssistanceDataSupport ::=
GNSS-GenericAssistDataSupportElement ::= SEQUENCE {
gnss-ID GNSS-ID,
sbas-ID SBAS-ID OPTIONAL, -- Cond GNSSIDSBAS
sbas-ID SBAS-ID OPTIONAL, -- Cond GNSS-ID-SBAS
gnss-TimeModelsSupport GNSS-TimeModelListSupport
OPTIONAL, -- Cond TimeModSup
gnss-DifferentialCorrectionsSupport GNSS-DifferentialCorrectionsSupport

View File

@ -8,7 +8,7 @@
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
* Ref 3GPP TS 36.355 version 15.5.0 Release 15
* Ref 3GPP TS 37.355 version 15.0.0 Release 15
* http://www.3gpp.org
*/

View File

@ -8,7 +8,7 @@
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
* Ref 3GPP TS 36.355 version 15.5.0 Release 15
* Ref 3GPP TS 37.355 version 15.0.0 Release 15
* http://www.3gpp.org
*/

View File

@ -16,7 +16,7 @@
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
* Ref 3GPP TS 36.355 version 15.5.0 Release 15
* Ref 3GPP TS 37.355 version 15.0.0 Release 15
* http://www.3gpp.org
*/

View File

@ -16,7 +16,7 @@
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
* Ref 3GPP TS 36.355 version 15.5.0 Release 15
* Ref 3GPP TS 37.355 version 15.0.0 Release 15
* http://www.3gpp.org
*/

View File

@ -1,6 +1,6 @@
#!/usr/bin/perl
#
# This script extracts the ASN1 definition from and TS 36.331/36.355/25.331/38.331
# This script extracts the ASN1 definition from and TS 36.331/36.355/25.331/38.331/37.355
# and generates asn files that can be processed by asn2wrs
# First download the specification from 3gpp.org as a word document and open it
# Then in "view" menu, select normal, draft or web layout (any kind that removes page header and footers)
@ -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\.355) V/){
if($line =~ m/3GPP TS ((25|36|38)\.331|(36|37)\.355) V/){
$version = $line;
return;
}