aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--library/PCUIF_Types.ttcn4
-rw-r--r--pcu/PCU_Tests.ttcn2
2 files changed, 3 insertions, 3 deletions
diff --git a/library/PCUIF_Types.ttcn b/library/PCUIF_Types.ttcn
index dbb1436c..aab5f09c 100644
--- a/library/PCUIF_Types.ttcn
+++ b/library/PCUIF_Types.ttcn
@@ -208,7 +208,7 @@ type record PCUIF_info_ind {
uint8_t initial_mcs,
record length(2) of uint16_t nsvci,
- record length(2) of uint16_t local_pprt,
+ record length(2) of uint16_t local_port,
record length(2) of uint16_t remote_port,
record length(2) of OCT4 remote_ip
} with {
@@ -829,7 +829,7 @@ template PCUIF_Message tr_PCUIF_INFO_IND(template uint8_t bts_nr := ?,
initial_cs := ?,
initial_mcs := ?,
nsvci := ?,
- local_pprt := ?,
+ local_port := ?,
remote_port := ?,
remote_ip := ?
}
diff --git a/pcu/PCU_Tests.ttcn b/pcu/PCU_Tests.ttcn
index 1c77256e..bb10a77e 100644
--- a/pcu/PCU_Tests.ttcn
+++ b/pcu/PCU_Tests.ttcn
@@ -90,7 +90,7 @@ friend template (value) PCUIF_info_ind ts_PCUIF_INFO_default := {
initial_cs := 2,
initial_mcs := 6,
nsvci := { mp_nsconfig.nsvci, 0 },
- local_pprt := { mp_nsconfig.remote_udp_port, 0 },
+ local_port := { mp_nsconfig.remote_udp_port, 0 },
remote_port := { mp_nsconfig.local_udp_port, 0 },
remote_ip := { f_inet_haddr(mp_nsconfig.local_ip) , '00000000'O }
}