fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/erlang/osmo-s1gw/+/37459?usp=email )
Change subject: sctp_proxy: fix typo in field name: s/mmr_port/mme_port/g
......................................................................
sctp_proxy: fix typo in field name: s/mmr_port/mme_port/g
Change-Id: I0c3d5a979aaa494cb0b2bd3da9118d9fedf7027f
---
M src/sctp_proxy.erl
1 file changed, 11 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/erlang/osmo-s1gw refs/changes/59/37459/1
diff --git a/src/sctp_proxy.erl b/src/sctp_proxy.erl
index d325622..85b5c3d 100644
--- a/src/sctp_proxy.erl
+++ b/src/sctp_proxy.erl
@@ -78,7 +78,7 @@
{ok, connecting,
#{enb_aid => Aid,
mme_addr => MmeAddr,
- mmr_port => MmePort,
+ mme_port => MmePort,
tx_queue => []}}.
@@ -88,7 +88,7 @@
%% CONNECTING state
connecting(enter, OldState,
- #{mme_addr := MmeAddr, mmr_port := MmePort} = S) ->
+ #{mme_addr := MmeAddr, mme_port := MmePort} = S) ->
?LOG_INFO("State change: ~p -> ~p", [OldState, ?FUNCTION_NAME]),
%% Initiate connection establishment with the MME
{ok, Sock} = sctp_client:connect(MmeAddr, MmePort),
--
To view, visit
https://gerrit.osmocom.org/c/erlang/osmo-s1gw/+/37459?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: erlang/osmo-s1gw
Gerrit-Branch: master
Gerrit-Change-Id: I0c3d5a979aaa494cb0b2bd3da9118d9fedf7027f
Gerrit-Change-Number: 37459
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange