aboutsummaryrefslogtreecommitdiffstats
path: root/src/gun_default_event_h.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/gun_default_event_h.erl')
-rw-r--r--src/gun_default_event_h.erl12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gun_default_event_h.erl b/src/gun_default_event_h.erl
index a29183d..4156ed7 100644
--- a/src/gun_default_event_h.erl
+++ b/src/gun_default_event_h.erl
@@ -21,6 +21,9 @@
-export([request_start/2]).
-export([request_headers/2]).
-export([request_end/2]).
+-export([response_inform/2]).
+-export([response_headers/2]).
+-export([response_end/2]).
-export([disconnect/2]).
-export([terminate/2]).
@@ -42,6 +45,15 @@ request_headers(_EventData, State) ->
request_end(_EventData, State) ->
State.
+response_inform(_EventData, State) ->
+ State.
+
+response_headers(_EventData, State) ->
+ State.
+
+response_end(_EventData, State) ->
+ State.
+
disconnect(_EventData, State) ->
State.