pespin has submitted this change. ( https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/35934?usp=email )
Change subject: s2b: Fix FTEID interface in CreateSessionResponse ......................................................................
s2b: Fix FTEID interface in CreateSessionResponse
Change-Id: Iac76804738cdf237024bd762d5ea3aaf9a2cb9c1 --- M src/epdg_gtpc_s2b.erl 1 file changed, 11 insertions(+), 2 deletions(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve pespin: Looks good to me, approved
diff --git a/src/epdg_gtpc_s2b.erl b/src/epdg_gtpc_s2b.erl index 05aed1b..2adda97 100644 --- a/src/epdg_gtpc_s2b.erl +++ b/src/epdg_gtpc_s2b.erl @@ -302,7 +302,7 @@ % Do GTP specific msg parsing here, pass only relevant fields: #{{v2_fully_qualified_tunnel_endpoint_identifier,1} := #v2_fully_qualified_tunnel_endpoint_identifier{ - interface_type = 30, %% "S2b ePDG GTP-C" + interface_type = 32, %% "S2b PGW GTP-C" key = RemoteTEIC, ipv4 = _IPc4, ipv6 = _IPc6}, {v2_pdn_address_allocation,0} := Paa, {v2_bearer_context,0} := #v2_bearer_context{instance = 0, group = BearerIE}} = Resp#gtp.ie, @@ -310,7 +310,7 @@ #{{v2_eps_bearer_id,0} := #v2_eps_bearer_id{instance = 0, eps_bearer_id = Ebi}, {v2_fully_qualified_tunnel_endpoint_identifier,4} := #v2_fully_qualified_tunnel_endpoint_identifier{ - interface_type = 31, %% "S2b-U ePDG GTP-U" + interface_type = 33, %% "S2b-U PGW GTP-U" key = RemoteTEID, ipv4 = IPu4, ipv6 = IPu6} } = BearerIE, Bearer = gtp_session_find_bearer_by_ebi(Sess0, Ebi),