From: wessels <> Date: Mon, 18 Jun 2001 22:34:15 +0000 (+0000) Subject: minor clarifications to auth module stuff X-Git-Tag: SQUID_3_0_PRE1~1489 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28b17d9bc9113592a23268d85345c88f8a5d3688;p=thirdparty%2Fsquid.git minor clarifications to auth module stuff --- diff --git a/doc/Programming-Guide/prog-guide.sgml b/doc/Programming-Guide/prog-guide.sgml index 7f2cf48a15..1139447ec7 100644 --- a/doc/Programming-Guide/prog-guide.sgml +++ b/doc/Programming-Guide/prog-guide.sgml @@ -2,7 +2,7 @@
Squid Programmers Guide Duane Wessels, Squid Developers -$Id: prog-guide.sgml,v 1.43 2001/06/18 16:32:35 wessels Exp $ +$Id: prog-guide.sgml,v 1.44 2001/06/18 16:34:15 wessels Exp $ Squid is a WWW Cache application developed by the National Laboratory @@ -2423,9 +2423,9 @@ line, separated by a space:

-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.

The following simple perl script demonstrates how the @@ -2435,7 +2435,7 @@ and allows any user that uses the password ``Sekrit'': #!/usr/bin/perl -w -$|=1; +$|=1; # no buffering, important! while (<>) { chop; ($u,$p) = split;