mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
31 lines
773 B
Plaintext
31 lines
773 B
Plaintext
module HTTPX
|
|
module Plugins
|
|
module Proxy
|
|
module HTTP
|
|
|
|
module InstanceMethods
|
|
def with_proxy_basic_auth: (Hash[Symbol, untyped] opts) -> instance
|
|
|
|
def with_proxy_digest_auth: (Hash[Symbol, untyped] opts) -> instance
|
|
|
|
def with_proxy_ntlm_auth: (Hash[Symbol, untyped] opts) -> instance
|
|
end
|
|
|
|
module ConnectionMethods
|
|
def __http_proxy_connect: (Connection::_Parser parser) -> void
|
|
def __http_on_connect: (top, Response) -> void
|
|
end
|
|
|
|
module ProxyParser
|
|
end
|
|
|
|
class ConnectRequest < Request
|
|
def initialize: (generic_uri uri, Options options) -> void
|
|
end
|
|
end
|
|
end
|
|
|
|
type httpProxy = Session & Proxy::HTTP::InstanceMethods
|
|
end
|
|
end
|