mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-11-22 00:05:57 -05:00
27 lines
366 B
Plaintext
27 lines
366 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
|
|
|
|
private
|
|
|
|
def build_socket: () -> Socket
|
|
end
|
|
end
|