]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/auth/ntlm/User.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / auth / ntlm / User.cc
index ebc7eff6751a7320fc3a1636e145df45395665bd..451de76bd59b85c5984589fde2f3f249c5edead5 100644 (file)
@@ -1,12 +1,19 @@
-#include "config.h"
+/*
+ * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
+ *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
+ */
+
+#include "squid.h"
 #include "auth/Config.h"
 #include "auth/ntlm/User.h"
 #include "Debug.h"
 
-Auth::Ntlm::User::User(Auth::Config *aConfig) :
-        Auth::User(aConfig)
+Auth::Ntlm::User::User(Auth::Config *aConfig, const char *aRequestRealm) :
+    Auth::User(aConfig, aRequestRealm)
 {
-    proxy_auth_list.head = proxy_auth_list.tail = NULL;
 }
 
 Auth::Ntlm::User::~User()
@@ -19,3 +26,4 @@ Auth::Ntlm::User::ttl() const
 {
     return -1; // NTLM credentials cannot be cached.
 }
+