--------------------- PatchSet 1939 Date: 2001/04/14 18:40:05 Author: hno Branch: authinfo-2_4 Tag: (none) Log: Send client IP to proxy_auth helpers Members: src/authenticate.c:1.4.4.1.2.1->1.4.4.1.2.2 Index: squid/src/authenticate.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/authenticate.c,v retrieving revision 1.4.4.1.2.1 retrieving revision 1.4.4.1.2.2 diff -u -r1.4.4.1.2.1 -r1.4.4.1.2.2 --- squid/src/authenticate.c 13 Apr 2001 21:24:38 -0000 1.4.4.1.2.1 +++ squid/src/authenticate.c 14 Apr 2001 18:40:05 -0000 1.4.4.1.2.2 @@ -1,6 +1,6 @@ /* - * $Id: authenticate.c,v 1.4.4.1.2.1 2001/04/13 21:24:38 hno Exp $ + * $Id: authenticate.c,v 1.4.4.1.2.2 2001/04/14 18:40:05 hno Exp $ * * DEBUG: section 29 Authenticator * AUTHOR: Duane Wessels @@ -100,7 +100,7 @@ cbdataLock(data); r->data = data; r->auth_user = auth_user; - snprintf(buf, 8192, "%s %s\n", hashKeyStr(&r->auth_user->hash), + snprintf(buf, 8192, "%s %s %s\n", hashKeyStr(&r->auth_user->hash), r->auth_user->passwd, inet_ntoa(r->auth_user->ipaddr)); helperSubmit(authenticators, buf, authenticateHandleReply, r); }