![]() |
![]()
| ![]() |
![]()
NAMESCGI DESCRIPTIONThis module is for implementing an SCGI interface for an application server. SYNOPISISuse SCGI; use IO::Socket; my $socket = IO::Socket::INET->new(Listen => 5, ReuseAddr => 1, LocalPort => 8080) or die "cannot bind to port 8080: $!"; my $scgi = SCGI->new($socket, blocking => 1); while (my $request = $scgi->accept) { $request->read_env; read $request->connection, my $body, $request->env->{CONTENT_LENGTH}; # print $request->connection "Content-Type: text/plain\n\nHello!\n"; } public methods
KNOWN ISSUESThe SCGI Apache2 module had a bug (for me at least), which resulted in segmentation faults. This appeared after version 1.2 (the version in Debian Sarge) and was fixed in 1.10. The SCGI Apache2 module has a bug where certain headers can be repeated. This is still present in version 1.10. A patch has been accepted and this issue should be resolved in the next release. This modulenow issues a warning on a repeated header, rather than throwing an exception as in the previous version. AUTHORThomas Yandell <mailto:tom+scgi@vipercode.com> COPYRIGHTCopyright 2005, 2006 Viper Code Limited. All rights reserved. LICENSEThis file is part of SCGI (perl SCGI library). This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|