1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-02 17:03:52 +00:00
This commit is contained in:
Anthony Minessale 2012-05-10 07:10:19 -05:00
parent 951f159901
commit 576fbb97ad

@ -65,7 +65,7 @@ my $xml = qq#
while (my $request = $scgi->accept) {
# fork every new req into its own process (optional)
next unless(fork());
next unless(my $pid = fork());
my $handle = $request->connection;
$request->read_env;
@ -89,5 +89,5 @@ while (my $request = $scgi->accept) {
#print $handle "Content-Type: text/xml\n\n";
print $handle $xml;
exit;
exit if (!$pid);
}