fixeria submitted this change.
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(-)
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 change 37459. To unsubscribe, or for help writing mail filters, visit settings.