]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/HTTPD.pm
view: s/threaded/nested/ in view
[public-inbox.git] / lib / PublicInbox / HTTPD.pm
index 78efaa50b417177139333c52143247685e70757f..fb476624dbbb8b42837958e7e211daadbd145563 100644 (file)
@@ -8,10 +8,7 @@ use Plack::Util;
 require PublicInbox::HTTPD::Async;
 require PublicInbox::Daemon;
 
-sub pi_httpd_async {
-       my ($io, $cb) = @_;
-       PublicInbox::HTTPD::Async->new($io, $cb);
-}
+sub pi_httpd_async { PublicInbox::HTTPD::Async->new(@_) }
 
 sub new {
        my ($class, $sock, $app) = @_;
@@ -32,6 +29,8 @@ sub new {
                'psgi.multiprocess' => Plack::Util::TRUE,
                'psgix.harakiri'=> Plack::Util::FALSE,
                'psgix.input.buffered' => Plack::Util::TRUE,
+
+               # XXX unstable API!
                'pi-httpd.async' => do {
                        no warnings 'once';
                        *pi_httpd_async