=encoding utf8 =head1 NAME Mojo::UserAgent::UnixSocket - User Agent connections over UNIX sockets. =head1 VERSION 0.01 =head1 SYNOPSIS use Mojo::UserAgent::UnixSocket; my $ua = Mojo::UserAgent::UnixSocket->new; say $ua->get('unix:///var/run/docker.sock/images/json?all=true')->res->body; =head1 DESCRIPTION L transparently enables L to interact with services listening on Unix domain sockets. Any invocation that works with L should also work here. It expects URLs in the following format (the .sock is required, pending a clever patch): unix://.sock/ For example, talking to the L daemon, whose socket is (typically) located at C: unix:///var/run/docker.sock/images/nginx/json =head1 SEE ALSO L, L