Flowdock
service(req, res) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/webrick/httpproxy.rb, line 43
    def service(req, res)
      if req.request_method == "CONNECT"
        do_CONNECT(req, res)
      elsif req.unparsed_uri =~ %^http://!
        proxy_service(req, res)
      else
        super(req, res)
      end
    end
Register or log in to add new notes.