class IO::Endpoint::UNIXEndpoint

def initialize(path, type = Socket::SOCK_STREAM, **options)

def initialize(path, type = Socket::SOCK_STREAM, **options)
	# I wonder if we should implement chdir behaviour in here if path is longer than 104 characters.
	super(Address.unix(path, type), **options)
	
	@path = path
end