diff options
author | Loïc Hoguin <[email protected]> | 2015-03-25 13:46:20 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2015-03-25 13:46:20 +0100 |
commit | 13add09e80b931165f720a2b8b4d90fc890e0d6c (patch) | |
tree | a25320dc088c956581c9106c3d23f071600e9c11 /src/gun_spdy.erl | |
parent | 83d8b63b8abb46b374439c8c8571091968af6260 (diff) | |
download | gun-13add09e80b931165f720a2b8b4d90fc890e0d6c.tar.gz gun-13add09e80b931165f720a2b8b4d90fc890e0d6c.tar.bz2 gun-13add09e80b931165f720a2b8b4d90fc890e0d6c.zip |
Fix the order of stream references in gun_push message
Should be simpler if the original stream reference is at the same
position in all messages.
Diffstat (limited to 'src/gun_spdy.erl')
-rw-r--r-- | src/gun_spdy.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gun_spdy.erl b/src/gun_spdy.erl index 4db4822..faaf05e 100644 --- a/src/gun_spdy.erl +++ b/src/gun_spdy.erl @@ -89,8 +89,8 @@ handle_frame(Rest, State=#spdy_state{owner=Owner, case get_stream_by_id(AssocToStreamID, State) of #stream{ref=AssocToStreamRef} -> StreamRef = make_ref(), - Owner ! {gun_push, self(), StreamRef, - AssocToStreamRef, Method, Host, Path, Headers}, + Owner ! {gun_push, self(), AssocToStreamRef, + StreamRef, Method, Host, Path, Headers}, handle_loop(Rest, new_stream(StreamID, StreamRef, not IsFin, false, Version, State)); false -> |