aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAnders Svensson <[email protected]>2015-06-19 02:39:29 +0200
committerAnders Svensson <[email protected]>2015-06-19 03:03:14 +0200
commitc6c18a2eca711e738b187b4f7aa0bd2a4765bea3 (patch)
tree42a4ed7315ac872d23dc86db1d78d6496f180cc3 /lib
parent29d23ca325f52c86517f1c6d0b53328c14e4af65 (diff)
downloadotp-c6c18a2eca711e738b187b4f7aa0bd2a4765bea3.tar.gz
otp-c6c18a2eca711e738b187b4f7aa0bd2a4765bea3.tar.bz2
otp-c6c18a2eca711e738b187b4f7aa0bd2a4765bea3.zip
Simplify peeloff signaling
In particular, don't give the accepting transport process the listening socket. It was used to match the initial sctp message received in a peeloff message, but replace the socket in the forwarded message instead.
Diffstat (limited to 'lib')
-rw-r--r--lib/diameter/src/transport/diameter_sctp.erl34
1 files changed, 15 insertions, 19 deletions
diff --git a/lib/diameter/src/transport/diameter_sctp.erl b/lib/diameter/src/transport/diameter_sctp.erl
index 7e54acaa01..f2949c1242 100644
--- a/lib/diameter/src/transport/diameter_sctp.erl
+++ b/lib/diameter/src/transport/diameter_sctp.erl
@@ -241,24 +241,22 @@ i({connect, Pid, Opts, Addrs, Ref}) ->
%% An accepting transport spawned by diameter, not yet owning an
%% association.
-i({accept, Pid, LPid, LSock, Ref})
+i({accept, Pid, LPid, Ref})
when is_pid(Pid) ->
putr(?REF_KEY, Ref),
proc_lib:init_ack({ok, self()}),
monitor(process, Pid),
MRef = monitor(process, LPid),
wait([{peeloff, MRef}], #transport{parent = Pid,
- mode = {accept, LPid},
- socket = LSock});
+ mode = {accept, LPid}});
%% An accepting transport spawned at association establishment.
-i({accept, Ref, LPid, LSock, _Id}) ->
+i({accept, Ref, LPid, _Id}) ->
putr(?REF_KEY, Ref),
proc_lib:init_ack({ok, self()}),
erlang:send_after(?ACCEPT_TIMEOUT, self(), accept_timeout),
MRef = monitor(process, LPid),
- wait([{parent, Ref}, {peeloff, MRef}], #transport{mode = {accept, LPid},
- socket = LSock}).
+ wait([{parent, Ref}, {peeloff, MRef}], #transport{mode = {accept, LPid}}).
%% wait/2
%%
@@ -268,17 +266,15 @@ i({accept, Ref, LPid, LSock, _Id}) ->
wait(Keys, S) ->
lists:foldl(fun i/2, S, Keys).
-i({K, Ref}, #transport{mode = {accept, _},
- socket = LSock}
- = S) ->
+i({K, Ref}, #transport{mode = {accept, _}} = S) ->
receive
{Ref, Pid} when K == parent -> %% transport process started
S#transport{parent = Pid};
- {K, Sock, T, Matches} when K == peeloff -> %% association
- {sctp, LSock, _RA, _RP, _Data} = T, %% assert
+ {K, T, Matches} when K == peeloff -> %% association
+ {sctp, Sock, _RA, _RP, _Data} = T,
ok = accept_peer(Sock, Matches),
demonitor(Ref, [flush]),
- t(setelement(2, T, Sock), S#transport{socket = Sock});
+ t(T, S#transport{socket = Sock});
accept_timeout = T ->
x(T);
{'DOWN', _, process, _, _} = T ->
@@ -482,10 +478,12 @@ start_timer(S) ->
%% Transition listener state.
%% Incoming message from SCTP.
-l({sctp, Sock, _RA, _RP, Data} = Msg, #listener{socket = Sock} = S) ->
+l({sctp, Sock, _RA, _RP, Data} = T, #listener{socket = Sock,
+ accept = Matches}
+ = S) ->
Id = assoc_id(Data),
{TPid, NewS} = accept(Id, S),
- TPid ! {peeloff, peeloff(Sock, Id, TPid), Msg, S#listener.accept},
+ TPid ! {peeloff, setelement(2, T, peeloff(Sock, Id, TPid)), Matches},
setopts(Sock),
NewS;
@@ -608,9 +606,8 @@ accept(_, Pid, #listener{ref = Ref,
TPid;
%% No pending associations: spawn a new transport.
-accept(Ref, Pid, #listener{socket = Sock,
- pending = {_,Q}}) ->
- nq({accept, Pid, self(), Sock, Ref}, Q).
+accept(Ref, Pid, #listener{pending = {_,Q}}) ->
+ nq({accept, Pid, self(), Ref}, Q).
%% send/2
@@ -738,9 +735,8 @@ tpid(_Id, #listener{pending = {N,Q}})
%% No transport start yet: spawn one and queue.
tpid(Id, #listener{ref = Ref,
- socket = Sock,
pending = {_,Q}}) ->
- nq({accept, Ref, self(), Sock, Id}, Q).
+ nq({accept, Ref, self(), Id}, Q).
%% nq/2
%%