Thread Daemon::SSL nach Annahme der Verbindung forken
(13 answers)
Opened by drux at 2010-06-30 00:37
ähm, moment,
ich habe tatsächlich anderen code benutzt, bzw. in der schleife noch was gemacht, was du im original gar nicht drinhattest. hab ich einfach aus der manpage übernommen (das mit get_request): Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 while (my $c = $d->accept) { while (my $r = $c->get_request) { my $pid = fork; next unless defined $pid; if ($pid) { print "forked child $pid\n"; } else { print "child $$, handling request\n"; sleep 5; print $c "Status 200 OK\n"; exit; } } } Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |