]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
minor clarifications to auth module stuff
authorwessels <>
Mon, 18 Jun 2001 22:34:15 +0000 (22:34 +0000)
committerwessels <>
Mon, 18 Jun 2001 22:34:15 +0000 (22:34 +0000)
doc/Programming-Guide/prog-guide.sgml

index 7f2cf48a15f0eeb6bba6739f2c06b44072161765..1139447ec7c9d81c7c9b470d3a127dcbeaf0c007 100644 (file)
@@ -2,7 +2,7 @@
 <article>
 <title>Squid Programmers Guide</title>
 <author>Duane Wessels, Squid Developers
-<date>$Id: prog-guide.sgml,v 1.43 2001/06/18 16:32:35 wessels Exp $</date>
+<date>$Id: prog-guide.sgml,v 1.44 2001/06/18 16:34:15 wessels Exp $</date>
 
 <abstract>
 Squid is a WWW Cache application developed by the National Laboratory
@@ -2423,9 +2423,9 @@ line, separated by a space:
 <USERNAME> <PASSWORD>
 </verb>
 <p>
-The authentication module process reads username, password
-pairs on stdin and returns either ``OK'' or ``ERR'' for
-each line.
+The authentication module process reads username, password pairs
+on stdin and returns either ``OK'' or ``ERR'' on stdout for
+each input line.
 
 <p>
 The following simple perl script demonstrates how the
@@ -2435,7 +2435,7 @@ and allows any user that uses the password ``Sekrit'':
 
 <verb>
 #!/usr/bin/perl -w
-$|=1;
+$|=1;          # no buffering, important!
 while (<>) {
         chop;
         ($u,$p) = split;