From: wessels <> Date: Wed, 9 May 2007 13:45:58 +0000 (+0000) Subject: Removed auth_user_request_t typedef. Just use AuthUserRequest. X-Git-Tag: SQUID_3_0_PRE6~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9554bbf24ad66258c9a594331665b519955712cc;p=thirdparty%2Fsquid.git Removed auth_user_request_t typedef. Just use AuthUserRequest. Actually removed it from src/typedefs.h this time. --- diff --git a/src/AuthConfig.h b/src/AuthConfig.h index ed5b427aad..6650a0a578 100644 --- a/src/AuthConfig.h +++ b/src/AuthConfig.h @@ -1,6 +1,6 @@ /* - * $Id: AuthConfig.h,v 1.3 2007/05/09 07:36:24 wessels Exp $ + * $Id: AuthConfig.h,v 1.4 2007/05/09 07:45:58 wessels Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -45,6 +45,7 @@ * ref counting... */ +class AuthUserRequest; class AuthConfig { diff --git a/src/AuthUser.h b/src/AuthUser.h index d49bb364c8..db6dff02b9 100644 --- a/src/AuthUser.h +++ b/src/AuthUser.h @@ -1,6 +1,6 @@ /* - * $Id: AuthUser.h,v 1.3 2007/01/03 12:40:41 hno Exp $ + * $Id: AuthUser.h,v 1.4 2007/05/09 07:45:58 wessels Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -35,6 +35,8 @@ #ifndef SQUID_AUTHUSER_H #define SQUID_AUTHUSER_H +class AuthUserRequest; + class AuthUser { diff --git a/src/client_side.h b/src/client_side.h index 41fea61ea0..705f00deca 100644 --- a/src/client_side.h +++ b/src/client_side.h @@ -1,6 +1,6 @@ /* - * $Id: client_side.h,v 1.21 2007/05/09 07:36:24 wessels Exp $ + * $Id: client_side.h,v 1.22 2007/05/09 07:45:58 wessels Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -45,6 +45,8 @@ class ClientHttpRequest; class clientStreamNode; +class AuthUserRequest; + template class Range; diff --git a/src/errorpage.h b/src/errorpage.h index 592ab8e391..316917f084 100644 --- a/src/errorpage.h +++ b/src/errorpage.h @@ -1,6 +1,6 @@ /* - * $Id: errorpage.h,v 1.3 2007/05/09 07:36:24 wessels Exp $ + * $Id: errorpage.h,v 1.4 2007/05/09 07:45:58 wessels Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -38,6 +38,8 @@ #include "squid.h" #include "cbdata.h" +class AuthUserRequest; + class ErrorState { diff --git a/src/typedefs.h b/src/typedefs.h index 05349e6bef..2246ba0ba6 100644 --- a/src/typedefs.h +++ b/src/typedefs.h @@ -1,6 +1,6 @@ /* - * $Id: typedefs.h,v 1.189 2007/05/09 07:36:24 wessels Exp $ + * $Id: typedefs.h,v 1.190 2007/05/09 07:45:58 wessels Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -58,9 +58,6 @@ typedef struct _acl_deny_info_list acl_deny_info_list; typedef class AuthUser auth_user_t; -class AuthUserRequest; -typedef AuthUserRequest AuthUserRequest; - typedef struct AuthUserHashPointer auth_user_hash_pointer; typedef struct AuthUserIP auth_user_ip_t;