bump version to 0.80 and prepare for release
[catagits/fcgi2.git] / perl / FCGI.pm
index e984e70..90ce926 100644 (file)
@@ -2,7 +2,7 @@ package FCGI;
 use strict;
 
 BEGIN {
-    our $VERSION = '0.74';
+    our $VERSION = '0.80';
 
     require XSLoader;
     XSLoader::load(__PACKAGE__, $VERSION);
@@ -68,12 +68,6 @@ sub TIEHANDLE {
     Carp::croak(q/Operation 'TIEHANDLE' not supported on FCGI::Stream handle/);
 }
 
-# Some things (e.g. IPC::Run) use fileno to determine if a filehandle is open,
-# so we return a defined, but meaningless value. (-1 being the error return
-# value from the syscall in c, meaning it can never be a valid fd no)
-# Probably a better alternative would be to return the fcgi stream fd.
-sub FILENO { -1 }
-
 1;
 
 =pod
@@ -133,7 +127,7 @@ server know which port (and possibly server) your program
 is listening on.
 See remote.pl for an example.
 
-=item flags (default: 0)
+=item flags (default: FCGI::FAIL_ACCEPT_ON_INTR)
 
 Possible values:
 
@@ -259,6 +253,13 @@ exception by using the C<bytes> pragma.
 
 Sven Verdoolaege <skimo@kotnet.org>
 
+=head1 COPYRIGHT AND LICENCE
+
+This software is copyrighted (c) 1996 by by Open Market, Inc.
+
+See the LICENSE file in this distribution for information on usage and
+redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
+
 =cut
 
 __END__