pespin has submitted this change. ( https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/35954?usp=email )
Change subject: gtp_u_tun: Fix call to gtp_u_kmod create_pdp_context ......................................................................
gtp_u_tun: Fix call to gtp_u_kmod create_pdp_context
Change-Id: Ie3837cdcfabbfe3c21af42940a7c41a8b87cc799 --- M src/gtp_u_tun.erl 1 file changed, 10 insertions(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved
diff --git a/src/gtp_u_tun.erl b/src/gtp_u_tun.erl index 626c9a4..d73eaad 100644 --- a/src/gtp_u_tun.erl +++ b/src/gtp_u_tun.erl @@ -65,4 +65,4 @@ PeerIP = conv:bin_to_ip(PeerAddr), % TODO: IPv6 UEIP = conv:bin_to_ip(EUA#epdg_eua.ipv4), % TODO: IPv6. ServRef = get_env_gtp_u_kmod_server_ref(), - gen_server:call(ServRef, {PeerIP, UEIP, LocalTEID, RemoteTEID}). + gen_server:call(ServRef, {create_pdp_context, PeerIP, LocalTEID, RemoteTEID, UEIP}).