lists.osmocom.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
October
September
August
July
June
May
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
List overview
Download
gerrit-log
October 2025
----- 2025 -----
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
gerrit-log@lists.osmocom.org
1 participants
585 discussions
Start a n
N
ew thread
[XS] Change in osmo-ttcn3-hacks[master]: Fix length indicators in tr_NAS_ActDefEpsBearCtxReq
by jolly
01 Oct '25
01 Oct '25
jolly has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41186?usp=email
) Change subject: Fix length indicators in tr_NAS_ActDefEpsBearCtxReq ...................................................................... Fix length indicators in tr_NAS_ActDefEpsBearCtxReq Related: SYS#7635 Change-Id: Ibce4b56c479fb5e31ee1f7871eab168facfef94e --- M library/NAS_EPS_Templates.ttcn 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/86/41186/1 diff --git a/library/NAS_EPS_Templates.ttcn b/library/NAS_EPS_Templates.ttcn index d2502f0..706bcf2 100644 --- a/library/NAS_EPS_Templates.ttcn +++ b/library/NAS_EPS_Templates.ttcn @@ -1294,11 +1294,11 @@ ePS_QualityOfServiceV := qos }, accessPointName := { - lengthIndicator := 0, + lengthIndicator := ?, accessPointNameValue := apn }, pDN_Address := { - lengthIndicator := 0, + lengthIndicator := ?, typeValue := addr_type, spare := '00000'B, addressInformation := addr_info -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41186?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: Ibce4b56c479fb5e31ee1f7871eab168facfef94e Gerrit-Change-Number: 41186 Gerrit-PatchSet: 1 Gerrit-Owner: jolly <andreas(a)eversberg.eu>
1
0
0
0
[S] Change in osmo-ttcn3-hacks[master]: library/s1ap: Add support for E_RABSetupRequest
by jolly
01 Oct '25
01 Oct '25
jolly has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41187?usp=email
) Change subject: library/s1ap: Add support for E_RABSetupRequest ...................................................................... library/s1ap: Add support for E_RABSetupRequest Related: SYS#7635 Change-Id: I4593bb8a7845b4b1dd10866fca47f473bd585cf6 --- M library/S1AP_Functions.ttcn 1 file changed, 20 insertions(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/87/41187/1 diff --git a/library/S1AP_Functions.ttcn b/library/S1AP_Functions.ttcn index fbdcada..d9af50e 100644 --- a/library/S1AP_Functions.ttcn +++ b/library/S1AP_Functions.ttcn @@ -49,6 +49,9 @@ case (tr_S1AP_ConnEstInd) { return im.value_.ConnectionEstablishmentIndication.protocolIEs[1].value_.ENB_UE_S1AP_ID; } + case (tr_S1AP_RABSetupReq) { + return im.value_.E_RABSetupRequest.protocolIEs[1].value_.ENB_UE_S1AP_ID; + } /* TODO */ } } else if (ischosen(s1ap.successfulOutcome)) { @@ -104,6 +107,9 @@ case (tr_S1AP_UeContextModificationReq) { return im.value_.UEContextModificationRequest.protocolIEs[0].value_.MME_UE_S1AP_ID; } + case (tr_S1AP_RABSetupReq) { + return im.value_.E_RABSetupRequest.protocolIEs[0].value_.MME_UE_S1AP_ID; + } /* TODO */ } } else if (ischosen(s1ap.successfulOutcome)) { @@ -164,7 +170,20 @@ } } return omit; - } + } + case (tr_S1AP_RABSetupReq) { + var E_RABSetupRequest msg := im.value_.E_RABSetupRequest; + for (i := 0; i < lengthof(msg.protocolIEs); i := i+1) { + if (msg.protocolIEs[i].id == id_E_RABToBeSetupListBearerSUReq) { + var E_RABToBeSetupListBearerSUReq rab_req := msg.protocolIEs[i].value_.E_RABToBeSetupListBearerSUReq; + for (j := 0; j < lengthof(rab_req); j := j+1) { + var E_RABToBeSetupItemBearerSUReq it := rab_req[j].value_.E_RABToBeSetupItemBearerSUReq; + return it.nAS_PDU; + } + } + } + return omit; + } } } return omit; -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41187?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I4593bb8a7845b4b1dd10866fca47f473bd585cf6 Gerrit-Change-Number: 41187 Gerrit-PatchSet: 1 Gerrit-Owner: jolly <andreas(a)eversberg.eu>
1
0
0
0
[XS] Change in osmo-ttcn3-hacks[master]: Allow matching tr_GTP2C_CreateSessionReq with any tEID
by jolly
01 Oct '25
01 Oct '25
jolly has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41185?usp=email
) Change subject: Allow matching tr_GTP2C_CreateSessionReq with any tEID ...................................................................... Allow matching tr_GTP2C_CreateSessionReq with any tEID Related: SYS#7635 Change-Id: I6fe3ba9f24bd0615e70ffe515c5b8c907ca8a494 --- M library/GTPv2_Templates.ttcn 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/85/41185/1 diff --git a/library/GTPv2_Templates.ttcn b/library/GTPv2_Templates.ttcn index 752e85c..925735a 100644 --- a/library/GTPv2_Templates.ttcn +++ b/library/GTPv2_Templates.ttcn @@ -971,7 +971,7 @@ tr_GTP2C_CreateSessionReq(template (present) hexstring imsi := ?, template (present) octetstring apn := ?, template APCO apco := *) := -tr_PDU_GTP2C('00000000'O, ?, { +tr_PDU_GTP2C(?, ?, { createSessionRequest := { iMSI := tr_GTP2C_Imsi(imsi), mSISDN := *, -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41185?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I6fe3ba9f24bd0615e70ffe515c5b8c907ca8a494 Gerrit-Change-Number: 41185 Gerrit-PatchSet: 1 Gerrit-Owner: jolly <andreas(a)eversberg.eu>
1
0
0
0
[XS] Change in osmo-el2tpd[master]: src/l2tp_protocol.h: include netinet/in.h
by fixeria
01 Oct '25
01 Oct '25
Attention is currently required from: Hoernchen, osmith. fixeria has posted comments on this change by osmith. (
https://gerrit.osmocom.org/c/osmo-el2tpd/+/41184?usp=email
) Change subject: src/l2tp_protocol.h: include netinet/in.h ...................................................................... Patch Set 1: Code-Review+1 -- To view, visit
https://gerrit.osmocom.org/c/osmo-el2tpd/+/41184?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment Gerrit-Project: osmo-el2tpd Gerrit-Branch: master Gerrit-Change-Id: Iaec15ee59a1e740d41e616142637612d2aacf1dc Gerrit-Change-Number: 41184 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de> Gerrit-Reviewer: Hoernchen <ewild(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Attention: osmith <osmith(a)sysmocom.de> Gerrit-Attention: Hoernchen <ewild(a)sysmocom.de> Gerrit-Comment-Date: Wed, 01 Oct 2025 08:05:42 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes
1
0
0
0
[XS] Change in dahdi-tools[master]: xpp/echo_loader: make get_ver static
by fixeria
01 Oct '25
01 Oct '25
Attention is currently required from: Hoernchen, osmith. fixeria has posted comments on this change by osmith. (
https://gerrit.osmocom.org/c/dahdi-tools/+/41174?usp=email
) Change subject: xpp/echo_loader: make get_ver static ...................................................................... Patch Set 1: Code-Review+1 -- To view, visit
https://gerrit.osmocom.org/c/dahdi-tools/+/41174?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment Gerrit-Project: dahdi-tools Gerrit-Branch: master Gerrit-Change-Id: I835d82c11f02c9635923d93fa36b46bbb46a9b48 Gerrit-Change-Number: 41174 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de> Gerrit-Reviewer: Hoernchen <ewild(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Attention: osmith <osmith(a)sysmocom.de> Gerrit-Attention: Hoernchen <ewild(a)sysmocom.de> Gerrit-Comment-Date: Wed, 01 Oct 2025 07:59:21 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes
1
0
0
0
← Newer
1
...
56
57
58
59
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Results per page:
10
25
50
100
200