From: Alex Rousskov Date: Sun, 8 Mar 2009 21:19:10 +0000 (-0600) Subject: Moved src/ACL* and a few related files into src/acl/. X-Git-Tag: SQUID_3_2_0_1~1111^2~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97066760fe23e681af90ec8983c2c3d6d6466e89;p=thirdparty%2Fsquid.git Moved src/ACL* and a few related files into src/acl/. Renamed ACL source files from ACLFoo.{cc,cci,h} to Foo.{cc,cci,h}. Many targets in src/Makefile.am depended on selected ACL ACL*cc and related sources. These targets depend on acl/* libraries now. As a part of this cleanup and reorganization, the number of ufsdump sources went from about 160 to about 20. Context: SourceLayout: acl/, take 1 --- diff --git a/src/authenticate.h b/src/auth/Gadgets.h similarity index 93% rename from src/authenticate.h rename to src/auth/Gadgets.h index b6937fec71..77b08b5956 100644 --- a/src/authenticate.h +++ b/src/auth/Gadgets.h @@ -30,10 +30,12 @@ * */ -#ifndef SQUID_AUTHENTICATE_H -#define SQUID_AUTHENTICATE_H +#ifndef SQUID_AUTH_GADGETS_H +#define SQUID_AUTH_GADGETS_H -#include "client_side.h" +#include "hash.h" +#include "MemPool.h" +#include "typedefs.h" /* for authConfig */ class AuthUser; @@ -65,6 +67,7 @@ MEMPROXY_CLASS_INLINE(AuthUserHashPointer); class ConnStateData; class AuthScheme; +class StoreEntry; /** \ingroup AuthAPI @@ -98,4 +101,4 @@ extern void authenticateUserCacheRestart(void); /// \ingroup AuthAPI extern void authenticateOnCloseConnection(ConnStateData * conn); -#endif /* SQUID_AUTHENTICATE_H */ +#endif /* SQUID_AUTH_GADGETS_H */