mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-12-05 00:02:12 -05:00
17 lines
304 B
Plaintext
17 lines
304 B
Plaintext
module HTTPX
|
|
module Resolver
|
|
class System < Resolver
|
|
RESOLV_ERRORS: Array[singleton(StandardError)] # ResolvError
|
|
|
|
@resolver: Resolv::DNS
|
|
|
|
attr_reader family: nil
|
|
|
|
def <<: (Connection) -> void
|
|
|
|
private
|
|
|
|
def initialize: (options options) -> void
|
|
end
|
|
end
|
|
end |