add BINMODE method and comment on socket perms
skimo [Tue, 27 Mar 2001 11:49:11 +0000 (11:49 +0000)]
perl/ChangeLog
perl/FCGI.PL

index c23ebfa..debc1ae 100644 (file)
@@ -1,3 +1,6 @@
+       o Add BINMODE method
+       o Add comment on socket permissions
+
 Version 0.59 --        31 December 2000   <skimo@kotnet.org> Sven Verdoolaege
 
        o preliminary pure perl implementation
index be2b204..ca6d8e8 100644 (file)
@@ -6,7 +6,7 @@ open OUT, ">FCGI.pm";
 
 print "Generating FCGI.pm\n";
 print OUT <<'EOP';
-# $Id: FCGI.PL,v 1.22 2000/12/31 21:56:10 skimo Exp $
+# $Id: FCGI.PL,v 1.23 2001/03/27 11:49:11 skimo Exp $
 
 package FCGI;
 
@@ -21,7 +21,7 @@ require DynaLoader;
        
 );
 
-$VERSION = '0.59';
+$VERSION = '0.60';
 
 EOP
 
@@ -331,6 +331,9 @@ sub PRINTF {
   shift->PRINT(sprintf(shift, @_));
 }
 
+sub BINMODE {
+}
+
 sub READLINE {
     my $stream = shift;
     my ($s, $c);
@@ -449,6 +452,11 @@ Creates a socket suitable to use as an argument to Request.
 =item path
 
 Pathname of socket or colon followed by local tcp port.
+Note that some systems take file permissions into account
+on Unix domain sockets, so you'll have to make sure that
+the server can write to the created file, by changing
+the umask before the call and/or changing permissions and/or
+group of the file afterwards.
 
 =item backlog