aboutsummaryrefslogtreecommitdiffstats
path: root/library/GTPv2_CodecPort.ttcn
diff options
context:
space:
mode:
Diffstat (limited to 'library/GTPv2_CodecPort.ttcn')
-rw-r--r--library/GTPv2_CodecPort.ttcn4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/GTPv2_CodecPort.ttcn b/library/GTPv2_CodecPort.ttcn
index e9cf57e8..0c4e9d3b 100644
--- a/library/GTPv2_CodecPort.ttcn
+++ b/library/GTPv2_CodecPort.ttcn
@@ -15,7 +15,7 @@ module GTPv2_CodecPort {
import from GTPv2_Types all;
/* identifies a remote peer (sender or receiver) */
- type record GtpPeer {
+ type record Gtp2cPeer {
ConnectionId connId,
HostName remName,
IPL4asp_Types.PortNumber remPort
@@ -23,7 +23,7 @@ module GTPv2_CodecPort {
/* Decoded GTP2C (Control Plane), used in send and receive direction */
type record Gtp2cUnitdata {
- GtpPeer peer,
+ Gtp2cPeer peer,
PDU_GTPCv2 gtpc
}