NAME
Server::FastPL - Add client-server behavior to scripts.
VERSION
This document refers to version 1.00 of Server::FastPL, released April 10, 2000
SYNOPSIS
--- server ---
use Server::FastPL;
my $fps = new Server::FastPL(TYPE=>"SERVER",NAME=>"Test");
while ($client = $fps->receive_connect()) { ... }
--- client ---
use Server::FastPL;
my $server = new Server::FastPL(TYPE=>"CLIENT",SERVER=>"/tmp/Test");
...
DESCRIPTION
Overview
This module is just a convenience wrapper for Server::FastPL::Server and Server::FastPL::Client. You might prefer to use these modules instead of this one.
See Server::FastPL::Server and Server::FastPL::Client for instructions.
SEE ALSO
Server::FastPL::Server; Server::FastPL::Client;
COPYRIGHT
Copyright (c) 2000, Daniel Ruoso. All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the same terms of Perl itself