NAME

Frontier::Daemon::Forking - receive Frontier XML RPC requests

SYNOPSIS

use Frontier::Daemon::Forking;

Frontier::Daemon::Forking->new(
    methods => {
        rpcName => \&rpcHandler,
    },
    encoding => 'ISO-8859-1',
);

sub rpcHandler { return 'OK' }

DESCRIPTION

Frontier::Daemon::Forking is a drop in replacement for Frontier::Daemon when a forking HTTP/1.1 server is needed that listens on a socket for incoming requests containing Frontier XML RPC2 method calls. Most of the code was borrowed from Frontier::Daemon.

AUTHOR

Todd Caine, tcaine@pobox.com

SEE ALSO

Frontier::RPC2, Frontier::Daemon, HTTP::Daemon