[S] Change in osmo-msc[master]: cosmetic: vlc: Fix whitespace formatting in struct sgsn_subscriber_pd...

2024-01-21 Thread pespin
pespin has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-msc/+/35630?usp=email )

Change subject: cosmetic: vlc: Fix whitespace formatting in struct 
sgsn_subscriber_pdp_data
..

cosmetic: vlc: Fix whitespace formatting in struct sgsn_subscriber_pdp_data

Change-Id: If6194e778dc5a4a140c7893a74cafcb6511d5803
---
M src/libvlr/vlr.c
1 file changed, 15 insertions(+), 6 deletions(-)

Approvals:
  Jenkins Builder: Verified
  fixeria: Looks good to me, approved




diff --git a/src/libvlr/vlr.c b/src/libvlr/vlr.c
index 37d7ffd..fb034cf 100644
--- a/src/libvlr/vlr.c
+++ b/src/libvlr/vlr.c
@@ -728,13 +728,13 @@
 /* see GSM 09.02, 17.7.1, PDP-Context and GPRSSubscriptionData */
 /* see GSM 09.02, B.1, gprsSubscriptionData */
 struct sgsn_subscriber_pdp_data {
-struct llist_head   list;
+   struct llist_head   list;

-unsigned intcontext_id;
-uint16_tpdp_type;
-charapn_str[GSM_APN_LENGTH];
-uint8_t qos_subscribed[20];
-size_t  qos_subscribed_len;
+   unsigned intcontext_id;
+   uint16_tpdp_type;
+   charapn_str[GSM_APN_LENGTH];
+   uint8_t qos_subscribed[20];
+   size_t  qos_subscribed_len;
 };

 struct sgsn_subscriber_pdp_data *

--
To view, visit https://gerrit.osmocom.org/c/osmo-msc/+/35630?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: If6194e778dc5a4a140c7893a74cafcb6511d5803
Gerrit-Change-Number: 35630
Gerrit-PatchSet: 1
Gerrit-Owner: pespin 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: lynxis lazus 
Gerrit-Reviewer: neels 
Gerrit-Reviewer: pespin 
Gerrit-MessageType: merged


[S] Change in osmo-gsm-manuals[master]: gsup.adoc: Update spec reference s/TS 09.60/TS 29.060/

2024-01-21 Thread pespin
pespin has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35623?usp=email )

Change subject: gsup.adoc: Update spec reference s/TS 09.60/TS 29.060/
..

gsup.adoc: Update spec reference s/TS 09.60/TS 29.060/

Change-Id: I42f4c5ce96823a91918cb01a6263cb7075226551
---
M common/chapters/gsup.adoc
1 file changed, 11 insertions(+), 2 deletions(-)

Approvals:
  fixeria: Looks good to me, but someone else must approve
  Jenkins Builder: Verified
  laforge: Looks good to me, approved




diff --git a/common/chapters/gsup.adoc b/common/chapters/gsup.adoc
index a9cffd9..d9a87ca 100644
--- a/common/chapters/gsup.adoc
+++ b/common/chapters/gsup.adoc
@@ -1117,7 +1117,7 @@
  PDP Type

 The PDP type value consists of 2 octets that are encoded like octet 4-5 of the
-End User Address defined in 3GPP TS 09.60, 7.9.18.
+End User Address (EUA) defined in 3GPP TS 29.060, 7.7.27.

 [packetdiag]
 
@@ -1134,7 +1134,7 @@
 }
 

-The spare bits are left undefined. While 09.60 defines them as '1 1 1 1', there
+The spare bits are left undefined. While 29.060 defines them as '1 1 1 1', 
there
 are MAP traces where these bits are set to '0 0 0 0'. So the receiver shall
 ignore these bits.


--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35623?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: I42f4c5ce96823a91918cb01a6263cb7075226551
Gerrit-Change-Number: 35623
Gerrit-PatchSet: 1
Gerrit-Owner: pespin 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: pespin 
Gerrit-MessageType: merged


[M] Change in osmo-gsm-manuals[master]: gsup: Convert PDP-Type IE to PDP-Address IE

2024-01-21 Thread pespin
pespin has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35628?usp=email )

Change subject: gsup: Convert PDP-Type IE to PDP-Address IE
..

gsup: Convert PDP-Type IE to PDP-Address IE

The previous PDP-Type IE should have been a PDP-Address from the
start, since having only PDP-Type with no address is only a specific
case (dynamic addressing).
This becomes clear by looking at other similar protocols like:
* MAP: APN-Configuration IE has servedPartyIP-IP{v4,v6}-Address IEs
* Diameter S6b, 3GPP TS 29.272 7.3.35 APN-Configuration contains
  Served-Party-IP-Address AVPs
* Diameter SWx, 3GPP TS 29.273 APN-Configuration.
* GTPv1C Ts 29.060 7.7.29 PDP Context containing PDP Address.

Since PDP-Type on its own really makes no sense, being it a special case
of PDP-Address, let's keep the IE by renaming it (keeping old name too
for API backward compat) and extend it to support lengths > 2 bytes.

Old implementation of libosmogsm gsup actually ignored lengths > 2
bytes, so we are safe acting against older implementations here, both
on the sending and receiving side on the wire.

While at it, fix the packetdiag representation, which was already wrong
before:
* Length is 1 byte, not 2 (this happened probably due to confusion
  between TS 29.060 EUA and TS 24.008 PDP address, the former TLV being
  2 bytes like all of GTP, and TS 24.008 being 1 byte).
* The bytes sharing several fields were swapped.

Change-Id: Ifb4e44b23d19ea049f03a3602c39f2471ff1bff4
Related: OS#6091
Related: libosmocore.git Change-Id I775ff9c3be165d9f30d6ab55d03f99b6104eadd6
---
M common/chapters/gsup.adoc
1 file changed, 56 insertions(+), 14 deletions(-)

Approvals:
  laforge: Looks good to me, but someone else must approve
  Jenkins Builder: Verified
  fixeria: Looks good to me, approved




diff --git a/common/chapters/gsup.adoc b/common/chapters/gsup.adoc
index d9a87ca..eeada52 100644
--- a/common/chapters/gsup.adoc
+++ b/common/chapters/gsup.adoc
@@ -1105,7 +1105,7 @@
 |  |PDP Info IEI|<>|M|V|1
 |  |Length of PDP Info IE||M|V|1
 |10|PDP Context ID|<>|C|TLV|3
-|11|PDP Type|<>|C|TLV|4
+|11|PDP Address|<>|C|TLV|4-24
 |12|Access Point Name|<>|C|TLV|3-102
 |13|Quality of Service|<>|O|TLV|1-20
 |14|PDP-Charging Characteristics|<>|O|TLV|4
@@ -1113,11 +1113,14 @@

 The conditional IE are mandantory unless mentioned otherwise.

-[[gsup-ie-pdptype]]
- PDP Type
+[[gsup-ie-pdpaddress]]
+ PDP Address

-The PDP type value consists of 2 octets that are encoded like octet 4-5 of the
-End User Address (EUA) defined in 3GPP TS 29.060, 7.7.27.
+The value part is encoded like in the Packet data protocol address IE defined
+in 3GPP TS 24.008, Chapter 10.5.6.4.
+Hence this value also relates to End User Address (EUA) IE defined in 3GPP TS
+29.060, 7.7.27.
+The PDP type organization value must be set to 'IETF allocated address'.

 [packetdiag]
 
@@ -1127,21 +1130,24 @@

0-6:PDP type IEI
7:  Res
-   8-15:   Length (2)
-   16-19:  Spare
-   20-23:  PDP type org
+   8-15:   Length
+   16-19:  PDP type org
+   20-23:  Spare
24-31:  PDP type number
+  32-191: Address (v4|v6|v4+v6)
 }
 

-The spare bits are left undefined. While 29.060 defines them as '1 1 1 1', 
there
-are MAP traces where these bits are set to '0 0 0 0'. So the receiver shall
-ignore these bits.
+The spare bits are left undefined. While 3GPP TS 29.060 7.7.27 defines them as
+'1 1 1 1', there are MAP traces where these bits are set to '0 0 0 0'. So the
+receiver shall ignore these bits.

 Examples:

-* IPv4: PDP type org: 1 (IETF), PDP type number: 0x21
-* IPv6: PDP type org: 1 (IETF), PDP type number: 0x57
+* IPv4: PDP type org: 1 (IETF), PDP type number: 0x21, 0 bytes address 
(dynamic addressing)
+* IPv4: PDP type org: 1 (IETF), PDP type number: 0x21, 4 bytes address
+* IPv6: PDP type org: 1 (IETF), PDP type number: 0x57, 16 bytes address
+* IPv6: PDP type org: 1 (IETF), PDP type number: 0x8D, 20 bytes address (v4+v6)

 [[gsup-ie-pdpctxid]]
  PDP Context ID
@@ -1296,7 +1302,7 @@
 |0x09|HLR Number|<>
 |0x0a|Message Class| <>
 |0x10|PDP Context ID|<>
-|0x11|PDP Type|<>
+|0x11|PDP Address|<>
 |0x12|Access Point Name|<>
 |0x13|QoS|<>
 |0x14|PDP-Charging Characteristics|<>

--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35628?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: Ifb4e44b23d19ea049f03a3602c39f2471ff1bff4
Gerrit-Change-Number: 35628
Gerrit-PatchSet: 1
Gerrit-Owner: pespin 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: pespin 
Gerrit-MessageType: merged


[S] Change in osmo-gsm-manuals[master]: Update spec reference s/TS 04.08/TS 24.008/

2024-01-21 Thread pespin
pespin has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35622?usp=email )

Change subject: Update spec reference s/TS 04.08/TS 24.008/
..

Update spec reference s/TS 04.08/TS 24.008/

Change-Id: Ie9feade73eff8c61232deffbad24ef34d97d32ac
---
M common/chapters/gsup.adoc
M common/chapters/oap.adoc
2 files changed, 17 insertions(+), 8 deletions(-)

Approvals:
  fixeria: Looks good to me, approved
  laforge: Looks good to me, but someone else must approve
  Jenkins Builder: Verified




diff --git a/common/chapters/gsup.adoc b/common/chapters/gsup.adoc
index 6d07e6b..a9cffd9 100644
--- a/common/chapters/gsup.adoc
+++ b/common/chapters/gsup.adoc
@@ -1091,7 +1091,7 @@
  IP Address

 The value part is encoded like in the Packet data protocol address IE defined
-in 3GPP TS 04.08, Chapter 10.5.6.4. PDP type organization must be set to
+in 3GPP TS 24.008, Chapter 10.5.6.4. PDP type organization must be set to
 'IETF allocated address'.

 [[gsup-ie-pdpinfo]]
@@ -1285,7 +1285,7 @@
 [options="header",cols="15%,35%,50%"]
 |===
 |IEI|Info Element|Type / Encoding
-|0x01|IMSI|Mobile Identity, 3GPP TS 04.08 Ch. 10.5.1.4
+|0x01|IMSI|Mobile Identity, 3GPP TS 24.008 Ch. 10.5.1.4
 |0x02|Cause|<>
 |0x03|Auth Tuple|<>
 |0x04|PDP Info Compl|<>
@@ -1351,7 +1351,7 @@
  IMSI

 The IMSI is encoded like in octet 4-N of the Called Party BCD Number
-defined in 3GPP TS 04.08, 10.5.4.7.
+defined in 3GPP TS 24.008, 10.5.4.7.

 [packetdiag]
 
@@ -1377,7 +1377,7 @@
  ISDN-AddressString / MSISDN / Called Party BCD Number

 The MSISDN is encoded as an ISDN-AddressString in 3GPP TS 09.02 and Called 
Party
-BCD Number in 3GPP TS 04.08. It will be stored by the SGSN or VLR and then 
passed as is
+BCD Number in 3GPP TS 24.008. It will be stored by the SGSN or VLR and then 
passed as is
 to the GGSN during the activation of the primary PDP Context.

 [packetdiag]
@@ -1479,7 +1479,7 @@
  Cause

 This IE shall be encoded according to the 'GMM Cause' as described in
-Chapter 10.5.5.14 of 3GPP TS 04.08.
+Chapter 10.5.5.14 of 3GPP TS 24.008.

 [[gsup-ie-ss-info]]
  Supplementary Service Info
@@ -1491,7 +1491,7 @@
 [[gsup-ie-imei]]
  IMEI

-The IMEI encoded as Called Party BCD Number in 3GPP TS 04.08.
+The IMEI encoded as Called Party BCD Number in 3GPP TS 24.008.

 [[gsup-ie-imei-result]]
  IMEI Check Result
diff --git a/common/chapters/oap.adoc b/common/chapters/oap.adoc
index 425ff75..5255b4a 100644
--- a/common/chapters/oap.adoc
+++ b/common/chapters/oap.adoc
@@ -136,7 +136,7 @@
 |===
 |IEI|IE|Type|Presence|Format|Length
 |  |Message Type|<>|M|V|1
-|02|Cause|GMM Cause, TS 04.08: 10.5.5.14|M|TLV|3
+|02|Cause|GMM Cause, TS 24.008: 10.5.5.14|M|TLV|3
 |===

  Register Result
@@ -169,7 +169,7 @@
 |===
 |IEI|IE|Type|Presence|Format|Length
 |  |Message Type|<>|M|V|1
-|02|Cause|GMM Cause, TS 04.08: 10.5.5.14|M|TLV|3
+|02|Cause|GMM Cause, TS 24.008: 10.5.5.14|M|TLV|3
 |===

  Challenge Result

--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35622?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: Ie9feade73eff8c61232deffbad24ef34d97d32ac
Gerrit-Change-Number: 35622
Gerrit-PatchSet: 1
Gerrit-Owner: pespin 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: pespin 
Gerrit-MessageType: merged


[M] Change in osmo-gsm-manuals[master]: gsup: Convert PDP-Type IE to PDP-Address IE

2024-01-21 Thread fixeria
Attention is currently required from: pespin.

fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35628?usp=email )

Change subject: gsup: Convert PDP-Type IE to PDP-Address IE
..


Patch Set 1: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35628?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: Ifb4e44b23d19ea049f03a3602c39f2471ff1bff4
Gerrit-Change-Number: 35628
Gerrit-PatchSet: 1
Gerrit-Owner: pespin 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Attention: pespin 
Gerrit-Comment-Date: Sun, 21 Jan 2024 10:18:59 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[S] Change in osmo-gsm-manuals[master]: gsup.adoc: Update spec reference s/TS 09.60/TS 29.060/

2024-01-21 Thread fixeria
Attention is currently required from: pespin.

fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35623?usp=email )

Change subject: gsup.adoc: Update spec reference s/TS 09.60/TS 29.060/
..


Patch Set 1: Code-Review+1


--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35623?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: I42f4c5ce96823a91918cb01a6263cb7075226551
Gerrit-Change-Number: 35623
Gerrit-PatchSet: 1
Gerrit-Owner: pespin 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Attention: pespin 
Gerrit-Comment-Date: Sun, 21 Jan 2024 10:18:21 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[S] Change in osmo-gsm-manuals[master]: Update spec reference s/TS 04.08/TS 24.008/

2024-01-21 Thread fixeria
Attention is currently required from: laforge, pespin.

fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35622?usp=email )

Change subject: Update spec reference s/TS 04.08/TS 24.008/
..


Patch Set 1: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/35622?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: Ie9feade73eff8c61232deffbad24ef34d97d32ac
Gerrit-Change-Number: 35622
Gerrit-PatchSet: 1
Gerrit-Owner: pespin 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Attention: laforge 
Gerrit-Attention: pespin 
Gerrit-Comment-Date: Sun, 21 Jan 2024 10:18:05 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[S] Change in osmo-msc[master]: vlr: Use new libosmogsm struct osmo_gsup_pdp_info fields

2024-01-21 Thread fixeria
Attention is currently required from: pespin.

fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-msc/+/35631?usp=email )

Change subject: vlr: Use new libosmogsm struct osmo_gsup_pdp_info fields
..


Patch Set 1: Code-Review+1


--
To view, visit https://gerrit.osmocom.org/c/osmo-msc/+/35631?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: Ia002fd6e0334d56de34d352a0bf1a8604e2e9fd3
Gerrit-Change-Number: 35631
Gerrit-PatchSet: 1
Gerrit-Owner: pespin 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Attention: pespin 
Gerrit-Comment-Date: Sun, 21 Jan 2024 10:17:00 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[S] Change in osmo-msc[master]: cosmetic: vlc: Fix whitespace formatting in struct sgsn_subscriber_pd...

2024-01-21 Thread fixeria
Attention is currently required from: lynxis lazus, neels, pespin.

fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-msc/+/35630?usp=email )

Change subject: cosmetic: vlc: Fix whitespace formatting in struct 
sgsn_subscriber_pdp_data
..


Patch Set 1: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/osmo-msc/+/35630?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: If6194e778dc5a4a140c7893a74cafcb6511d5803
Gerrit-Change-Number: 35630
Gerrit-PatchSet: 1
Gerrit-Owner: pespin 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: lynxis lazus 
Gerrit-Reviewer: neels 
Gerrit-Attention: neels 
Gerrit-Attention: pespin 
Gerrit-Attention: lynxis lazus 
Gerrit-Comment-Date: Sun, 21 Jan 2024 10:16:07 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[M] Change in osmo-hnbgw[master]: pfcp: implement sending Network Instance IEs

2024-01-21 Thread fixeria
Attention is currently required from: laforge, neels.

fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-hnbgw/+/35645?usp=email )

Change subject: pfcp: implement sending Network Instance IEs
..


Patch Set 3: Code-Review+1

(1 comment)

File src/osmo-hnbgw/hnbgw_vty.c:

https://gerrit.osmocom.org/c/osmo-hnbgw/+/35645/comment/76389ef7_a323106b
PS3, Line 862:  LOGP(DLPFCP, LOGL_NOTICE, "cfg: pfcp netinst %s %s\n", 
access_or_core, *str);
looks like a debugging leftover



--
To view, visit https://gerrit.osmocom.org/c/osmo-hnbgw/+/35645?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-hnbgw
Gerrit-Branch: master
Gerrit-Change-Id: Ief53dbfacf1645c32a07847d590c4884d4c8ca56
Gerrit-Change-Number: 35645
Gerrit-PatchSet: 3
Gerrit-Owner: neels 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: neels 
Gerrit-Attention: neels 
Gerrit-Attention: laforge 
Gerrit-Comment-Date: Sun, 21 Jan 2024 10:15:25 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[S] Change in osmo-hnbgw[master]: pfcp: fix missing vty_write of pfcp local-port

2024-01-21 Thread fixeria
Attention is currently required from: neels.

fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-hnbgw/+/35644?usp=email )

Change subject: pfcp: fix missing vty_write of pfcp local-port
..


Patch Set 2: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/osmo-hnbgw/+/35644?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-hnbgw
Gerrit-Branch: master
Gerrit-Change-Id: I180e67b8abdd3c0d91b30f1e7668b02f1a323809
Gerrit-Change-Number: 35644
Gerrit-PatchSet: 2
Gerrit-Owner: neels 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Attention: neels 
Gerrit-Comment-Date: Sun, 21 Jan 2024 10:11:33 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[M] Change in osmo-hnbgw[master]: add tests/pfcp_cfg.vty.with_pfcp

2024-01-21 Thread fixeria
Attention is currently required from: laforge, neels.

fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-hnbgw/+/35643?usp=email )

Change subject: add tests/pfcp_cfg.vty.with_pfcp
..


Patch Set 2: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/osmo-hnbgw/+/35643?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-hnbgw
Gerrit-Branch: master
Gerrit-Change-Id: Ibb1797bb43a18f26fc693e0c8920cfd1f5fb9ede
Gerrit-Change-Number: 35643
Gerrit-PatchSet: 2
Gerrit-Owner: neels 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: neels 
Gerrit-Attention: neels 
Gerrit-Attention: laforge 
Gerrit-Comment-Date: Sun, 21 Jan 2024 10:11:14 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[S] Change in osmo-hnbgw[master]: tweak vty doc: "UDP port"

2024-01-21 Thread fixeria
Attention is currently required from: neels.

fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-hnbgw/+/35642?usp=email )

Change subject: tweak vty doc: "UDP port"
..


Patch Set 1: Code-Review+1


--
To view, visit https://gerrit.osmocom.org/c/osmo-hnbgw/+/35642?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-hnbgw
Gerrit-Branch: master
Gerrit-Change-Id: I24e52143a8f3d0c9f92985f6bb0420b34926eb33
Gerrit-Change-Number: 35642
Gerrit-PatchSet: 1
Gerrit-Owner: neels 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Attention: neels 
Gerrit-Comment-Date: Sun, 21 Jan 2024 10:09:34 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[S] Change in osmo-hnbgw[master]: pfcp: fix modification of wrong FAR ID

2024-01-21 Thread fixeria
Attention is currently required from: neels.

fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-hnbgw/+/35641?usp=email )

Change subject: pfcp: fix modification of wrong FAR ID
..


Patch Set 1: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/osmo-hnbgw/+/35641?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-hnbgw
Gerrit-Branch: master
Gerrit-Change-Id: I596f1785d280d7e53e0cef649d6bb5df01ebf648
Gerrit-Change-Number: 35641
Gerrit-PatchSet: 1
Gerrit-Owner: neels 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Attention: neels 
Gerrit-Comment-Date: Sun, 21 Jan 2024 10:09:09 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment