aboutsummaryrefslogtreecommitdiffstats
path: root/src/gun.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-08-26 18:57:34 +0200
committerLoïc Hoguin <[email protected]>2013-08-26 18:57:34 +0200
commite176953cd095e8c65d56461f840a14d53c57a1c1 (patch)
tree08bd22a056adf94b1b8a44f3c03da6cf4ed48b29 /src/gun.erl
parent5388696cf95d6c9b4400952bfcf3fb9db215c63c (diff)
downloadgun-e176953cd095e8c65d56461f840a14d53c57a1c1.tar.gz
gun-e176953cd095e8c65d56461f840a14d53c57a1c1.tar.bz2
gun-e176953cd095e8c65d56461f840a14d53c57a1c1.zip
Sync message signature with documentation
Diffstat (limited to 'src/gun.erl')
-rw-r--r--src/gun.erl10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gun.erl b/src/gun.erl
index 21666ec..112ab07 100644
--- a/src/gun.erl
+++ b/src/gun.erl
@@ -193,7 +193,7 @@ init(Parent, Owner, Host, Port, Opts) ->
keepalive=Keepalive, type=Type,
retry=Retry, retry_timeout=RetryTimeout}, Retry)
catch Class:Reason ->
- Owner ! {gun, error, self(), {{Class, Reason, erlang:get_stacktrace()},
+ Owner ! {gun_error, self(), {{Class, Reason, erlang:get_stacktrace()},
"An unexpected error occurred."}}
end.
@@ -301,15 +301,15 @@ loop(State=#state{parent=Parent, owner=Owner, host=Host,
sys:handle_system_msg(Request, From, Parent, ?MODULE, [],
{loop, [State]});
Any when is_tuple(Any), is_pid(element(2, Any)) ->
- element(2, Any) ! {gun, error, self(), {notowner,
+ element(2, Any) ! {gun_error, self(), {notowner,
"Operations are restricted to the owner of the connection."}},
loop(State);
{ws_upgrade, _, _, _} ->
- Owner ! {gun, error, self(), {badstate,
+ Owner ! {gun_error, self(), {badstate,
"Websocket over SPDY isn't supported."}},
loop(State);
{ws_send, _, _} ->
- Owner ! {gun, error, self(), {badstate,
+ Owner ! {gun_error, self(), {badstate,
"Connection needs to be upgraded to Websocket "
"before the gun:ws_send/1 function can be used."}},
loop(State);
@@ -344,7 +344,7 @@ ws_loop(State=#state{parent=Parent, owner=Owner, retry=Retry, socket=Socket,
sys:handle_system_msg(Request, From, Parent, ?MODULE, [],
{loop, [State]});
Any when is_tuple(Any), is_pid(element(2, Any)) ->
- element(2, Any) ! {gun, error, self(), {notowner,
+ element(2, Any) ! {gun_error, self(), {notowner,
"Operations are restricted to the owner of the connection."}},
loop(State);
Any ->