pespin has submitted this change. ( https://gerrit.osmocom.org/c/erlang/osmo_ss7/+/36094?usp=email )
Change subject: cosmetic: ipa_proto.erl: Fix trailing whitespace ......................................................................
cosmetic: ipa_proto.erl: Fix trailing whitespace
Change-Id: I8b742ae041670452745d5f0022e49b1bed0f1cf5 --- M src/ipa_proto.erl 1 file changed, 12 insertions(+), 3 deletions(-)
Approvals: laforge: Looks good to me, but someone else must approve pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/src/ipa_proto.erl b/src/ipa_proto.erl index ceb024a..fcd594b 100644 --- a/src/ipa_proto.erl +++ b/src/ipa_proto.erl @@ -1,4 +1,4 @@ -% ip.access IPA multiplex protocol +% ip.access IPA multiplex protocol
% (C) 2010,2012,2019 by Harald Welte laforge@gnumonks.org % (C) 2010 by On-Waves @@ -50,12 +50,12 @@ register_socket(Socket) -> IpaPid = spawn(?MODULE, init_sock, [Socket, self()]), % synchronously wait for init_sock to be done - receive + receive {ipa_init_sock_done, Socket} -> % assign ownership of the socket to the new IPA handler process gen_tcp:controlling_process(Socket, IpaPid), {ok, IpaPid} - after + after ?TIMEOUT -> {error, timeout} end.