]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - tools/purge/squid-tlv.cc
SourceFormat Enforcement
[thirdparty/squid.git] / tools / purge / squid-tlv.cc
index bf3d41d518f11056c06943b200c681f0fbaaa4c1..70502684611add71b50a602bb9e3ccece7a91f2d 100644 (file)
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 1996-2017 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.
+ */
+
 // Author:  Jens-S. V?ckler <voeckler@rvs.uni-hannover.de>
 //
 // File:    squid-tlv.cc
 // Revision 1.1  1999/06/15 21:10:16  voeckler
 // Initial revision
 //
-//
+
 #include "squid.h"
 #include "squid-tlv.hh"
 
 SquidTLV::SquidTLV( SquidMetaType _type, size_t _size, void* _data )
-        :next(0),size(_size)
+    :next(0),size(_size)
 {
     type = _type;
     data = (char*) _data;
@@ -73,3 +81,4 @@ SquidMetaList::search( SquidMetaType type ) const
     while ( temp && temp->type != type ) temp = temp->next;
     return temp;
 }
+