aboutsummaryrefslogtreecommitdiffstats
path: root/src/gun_default_event_h.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-05-08 14:01:51 +0200
committerLoïc Hoguin <[email protected]>2019-05-08 14:01:51 +0200
commitcfd702a716f834c431abd46532e8cfa4debd1468 (patch)
tree3b7f76792a5459fb577e0b661c79a0f6135ca884 /src/gun_default_event_h.erl
parent3e62d24573c91c04eb9af5d7ba47f2c16d1948de (diff)
downloadgun-cfd702a716f834c431abd46532e8cfa4debd1468.tar.gz
gun-cfd702a716f834c431abd46532e8cfa4debd1468.tar.bz2
gun-cfd702a716f834c431abd46532e8cfa4debd1468.zip
Add event_handler with init/connect_start/connect_end
Diffstat (limited to 'src/gun_default_event_h.erl')
-rw-r--r--src/gun_default_event_h.erl29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/gun_default_event_h.erl b/src/gun_default_event_h.erl
new file mode 100644
index 0000000..e242e84
--- /dev/null
+++ b/src/gun_default_event_h.erl
@@ -0,0 +1,29 @@
+%% Copyright (c) 2019, Loïc Hoguin <[email protected]>
+%%
+%% Permission to use, copy, modify, and/or distribute this software for any
+%% purpose with or without fee is hereby granted, provided that the above
+%% copyright notice and this permission notice appear in all copies.
+%%
+%% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+%% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+%% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+%% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+%% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+%% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+%% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+-module(gun_default_event_h).
+-behavior(gun_event).
+
+-export([init/2]).
+-export([connect_start/2]).
+-export([connect_end/2]).
+
+init(_EventData, State) ->
+ State.
+
+connect_start(_EventData, State) ->
+ State.
+
+connect_end(_EventData, State) ->
+ State.