httpx/sig/io/unix.rbs
HoneyryderChuck 2897179c44 removed .expired? dead code functions
not used anywhere. also, initialized an ivar in ssl class
2025-09-04 14:39:05 +01:00

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