mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
28 lines
395 B
Plaintext
28 lines
395 B
Plaintext
module HTTPX
|
|
class UNIX < TCP
|
|
|
|
attr_reader path: String
|
|
|
|
alias host path
|
|
|
|
@hostname: String
|
|
|
|
@options: Options
|
|
|
|
@fallback_protocol: String
|
|
|
|
@keep_open: bool
|
|
|
|
@io: Socket
|
|
|
|
def initialize: (http_uri origin, String? path, Options options) -> void
|
|
|
|
def connect: () -> void
|
|
|
|
def expired?: () -> bool
|
|
private
|
|
|
|
def build_socket: () -> Socket
|
|
end
|
|
end
|