diff options
author | Harald Welte <laforge@gnumonks.org> | 2017-08-25 14:46:39 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2017-08-25 14:46:39 +0200 |
commit | 3ab91d6ae45e65362bf658ee242eeabcf7aa9944 (patch) | |
tree | 0b254d4b16624a096ea41baadb52a5f0800344b5 /ggsn_tests | |
parent | b26cfffeda409f7de358ca5e3abfd8d681555459 (diff) |
GGSN_Tests: Fix IPv4 PCODNS matching
Diffstat (limited to 'ggsn_tests')
-rw-r--r-- | ggsn_tests/GGSN_Tests.ttcn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ggsn_tests/GGSN_Tests.ttcn b/ggsn_tests/GGSN_Tests.ttcn index ecc7d7a..358945a 100644 --- a/ggsn_tests/GGSN_Tests.ttcn +++ b/ggsn_tests/GGSN_Tests.ttcn @@ -387,7 +387,7 @@ module GGSN_Tests { } template ProtConfigOptions tr_PCO_IPv6_DNS_resp(template OCT16 contents) modifies tr_PCO := { protocols := { - { protocolID := '0003'O, lengthProtoID := 16, protoIDContents := contents } + *, { protocolID := '0003'O, lengthProtoID := 16, protoIDContents := contents }, * } } @@ -404,7 +404,7 @@ module GGSN_Tests { } template ProtConfigOptions tr_PCO_IPv4_DNS_CONT_resp(template OCT4 contents) modifies tr_PCO := { protocols := { - { protocolID := '000d'O, lengthProtoID := 4, protoIDContents := contents } + *, { protocolID := '000d'O, lengthProtoID := 4, protoIDContents := contents }, * } } |