]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/dlink.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / dlink.cc
index c2712bbc4250ef31e59bf087d90c870413c42300..656aa0a1d17d359a49940368914c9b250c0f6d03 100644 (file)
@@ -1,11 +1,18 @@
 /*
- * $Id$
+ * 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 "dlink.h"
 
-/* dlink are Mem-pooled */
-#include "MemPool.h"
+/* dlink_node use explicit alloc()/freeOne()
+ * XXX: convert to MEMPROXY_CLASS() API
+ */
+#include "mem/Pool.h"
 
 dlink_list ClientActiveRequests;
 
@@ -97,3 +104,4 @@ dlinkDelete(dlink_node * m, dlink_list * list)
 
     m->next = m->prev = NULL;
 }
+