Adding debian version 2.4.63-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
7263481e48
commit
f56986e2d9
1490 changed files with 80785 additions and 0 deletions
25
debian/perl-framework/scripts/fcgi.pl
vendored
Executable file
25
debian/perl-framework/scripts/fcgi.pl
vendored
Executable file
|
@ -0,0 +1,25 @@
|
|||
#!/usr/bin/env perl
|
||||
use FCGI;
|
||||
use Socket;
|
||||
use FCGI::ProcManager;
|
||||
use Data::Dumper;
|
||||
|
||||
$num_args = $#ARGV + 1;
|
||||
if ($num_args != 1) {
|
||||
print "\nUsage: fcgi.pl <socket>\n";
|
||||
exit 1;
|
||||
}
|
||||
|
||||
$proc_manager = FCGI::ProcManager->new( {n_processes => 1} );
|
||||
$socket = FCGI::OpenSocket( $ARGV[0], 10 );
|
||||
$request = FCGI::Request( \*STDIN, \*STDOUT, \*STDERR, \%req_params,
|
||||
$socket, &FCGI::FAIL_ACCEPT_ON_INTR );
|
||||
$proc_manager->pm_manage();
|
||||
if ($request) {
|
||||
while ( $request->Accept() >= 0 ) {
|
||||
$proc_manager->pm_pre_dispatch();
|
||||
print("Content-type: text/plain\r\n\r\n");
|
||||
print Dumper(\%req_params);
|
||||
}
|
||||
}
|
||||
FCGI::CloseSocket($socket);
|
Loading…
Add table
Add a link
Reference in a new issue