in reply to Continue when the client abort

use POSIX; # ... if (!defined($pid=fork()) { # fork fails } elsif($pid) { # parent waitpid(-1, WNOHANG); # run code here } else { # child }
or something like that :)

.02

cLive ;-)