pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36092?usp=email )
Change subject: GSUP_Emulation: Update internal tables to allow 256 sessions
......................................................................
GSUP_Emulation: Update internal tables to allow 256 sessions
Other Emulations like GTPv2 and DIAMETER already support that number of
sessions. Increase it to the same number in GSUP_Emulation to allow
handling a high amount of concurrent sessions while testing ePDG.
Change-Id: I9ce650140fc372debc85b603a20bbe9ea165c972
---
M library/GSUP_Emulation.ttcn
1 file changed, 15 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/92/36092/1
diff --git a/library/GSUP_Emulation.ttcn b/library/GSUP_Emulation.ttcn
index 5e15d06..4f7e5d6 100644
--- a/library/GSUP_Emulation.ttcn
+++ b/library/GSUP_Emulation.ttcn
@@ -60,11 +60,10 @@
/* GSUP port to the per-connection clients */
port GSUP_Conn_PT GSUP_CLIENT;
- /* use 16 as this is also the number of SCCP connections that SCCP_Emulation can handle */
- var ConnectionData GsupImsiTable[16];
+ var ConnectionData GsupImsiTable[256];
/* pending expected incoming connections */
- var ExpectData GsupExpectTable[16];
+ var ExpectData GsupExpectTable[256];
/* procedure based port to register for incoming connections */
port GSUPEM_PROC_PT GSUP_PROC;
};
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36092?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I9ce650140fc372debc85b603a20bbe9ea165c972
Gerrit-Change-Number: 36092
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange
pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/36023?usp=email )
Change subject: gsup: Introduce a new PCO IE
......................................................................
gsup: Introduce a new PCO IE
This IE will be required by the UE creating a tunnel at the ePDG (EPDG Tunnel Req).
The ePDG will convert the IKEv2 Configuration Attributes into TS 29.060
PCO, and sends them in S2b GTPv2C CreateSessionReq+Resp as PCO.
Change-Id: Id912ead4e1205f84a40af6505a5ddf050d1e086d
---
M common/chapters/gsup.adoc
1 file changed, 20 insertions(+), 0 deletions(-)
Approvals:
Jenkins Builder: Verified
fixeria: Looks good to me, approved
diff --git a/common/chapters/gsup.adoc b/common/chapters/gsup.adoc
index 1f70c5b..d88c579 100644
--- a/common/chapters/gsup.adoc
+++ b/common/chapters/gsup.adoc
@@ -1379,6 +1379,7 @@
|0x12|Access Point Name|<<gsup-ie-apn>>
|0x13|QoS|<<gsup-ie-qos>>
|0x14|PDP-Charging Characteristics|<<gsup-ie-charging>>
+|0x15|PCO|<<gsup-ie-pco>>
|0x20|RAND|<<gsup-ie-rand>>
|0x21|SRES|<<gsup-ie-sres>>
|0x22|Kc|<<gsup-ie-kc>>
@@ -1527,6 +1528,12 @@
}
----
+[[gsup-ie-pco]]
+==== Protocol Configuration Options (PCO)
+
+This encodes the Protocol Configuration Options (PCO) of 3GPP TS 29.060 clause
+7.7.31, which are the same as those specified in 3GPP TS 24.008 10.5.6.3. It
+will be used by the ePDG during the PDP Context activation.
[[gsup-ie-hlr]]
==== HLR Number encoded as 3GPP TS 09.02 ISDN-AddressString
--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/36023?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-gsm-manuals
Gerrit-Branch: master
Gerrit-Change-Id: Id912ead4e1205f84a40af6505a5ddf050d1e086d
Gerrit-Change-Number: 36023
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged