Merge pull request #18 from jcs/master

add on_connect callback
This commit is contained in:
James Hu 2017-06-23 09:38:26 -07:00 committed by GitHub
commit 466b552016
2 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,7 @@ class WordpressController < ApplicationController
# There's also other callbacks:
# - on_set_cookies
# - on_connect
# - on_response
# - on_set_cookies
# - on_success

View File

@ -7,6 +7,7 @@ module ReverseProxy
@@callback_methods = [
:on_response,
:on_set_cookies,
:on_connect,
:on_success,
:on_redirect,
:on_missing,
@ -87,6 +88,7 @@ module ReverseProxy
# Make the request
Net::HTTP.start(uri.hostname, uri.port, http_options) do |http|
callbacks[:on_connect].call(http)
target_response = http.request(target_request)
end