Thread Daemon::SSL nach Annahme der Verbindung forken (13 answers)
Opened by drux at 2010-06-30 00:37

pq
 2010-07-06 23:57
#139609 #139609
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
ä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: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Daemon::SSL nach Annahme der Verbindung forken