]> git.ipfire.org Git - thirdparty/squid.git/blame - src/StoreMetaSTD.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / StoreMetaSTD.cc
CommitLineData
528b2c61 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
528b2c61 3 *
bbc27441
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
528b2c61 7 */
8
bbc27441
AJ
9/* DEBUG: section 20 Storage Manager Swapfile Metadata */
10
582c2af2 11#include "squid.h"
528b2c61 12#include "MemObject.h"
602d9612
A
13#include "Store.h"
14#include "StoreMetaSTD.h"
528b2c61 15
528b2c61 16bool
17StoreMetaSTD::validLength(int len) const
18{
47f6e231 19 return len == STORE_HDR_METASIZE_OLD;
528b2c61 20}
f53969cc 21