--------------------- PatchSet 1397 Date: 2005/05/20 15:18:00 Author: rmartinez Branch: squid3-ipv6 Tag: (none) Log: Fixing shostid field at struct _icp_common_t . I hope this not to violates the RFC (if any) for ICP / v6. Ready unless error Members: src/ICP.h:1.6.8.1->1.6.8.2 Index: squid3/src/ICP.h =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/ICP.h,v retrieving revision 1.6.8.1 retrieving revision 1.6.8.2 diff -u -r1.6.8.1 -r1.6.8.2 --- squid3/src/ICP.h 25 Apr 2005 13:27:20 -0000 1.6.8.1 +++ squid3/src/ICP.h 20 May 2005 15:18:00 -0000 1.6.8.2 @@ -1,6 +1,6 @@ /* - * $Id: ICP.h,v 1.6.8.1 2005/04/25 13:27:20 rmartinez Exp $ + * $Id: ICP.h,v 1.6.8.2 2005/05/20 15:18:00 rmartinez Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -49,7 +49,8 @@ u_int32_t reqnum; /* req number (req'd for UDP) */ u_int32_t flags; u_int32_t pad; - u_int32_t shostid; /* sender host id */ + struct IN_ADDR shostid; /* sender host id */ + /* FIXME: In practical terms, this is filled with IP addr */ #ifdef __cplusplus _icp_common_t();