]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_MemObject.cc
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / tests / stub_MemObject.cc
CommitLineData
4e0938ef 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
4e0938ef
AJ
3 *
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.
7 */
8
f7f3304a 9#include "squid.h"
40d34a62 10#include "comm/Connection.h"
c8f4eac4 11#include "HttpReply.h"
602d9612 12#include "MemObject.h"
9a0a18de 13#if USE_DELAY_POOLS
74925dd4 14#include "DelayPools.h"
15#endif
c8f4eac4 16
081edc2d
AJ
17#define STUB_API "MemObject.cc"
18#include "tests/STUB.h"
19
aa839030 20RemovalPolicy * mem_policy = NULL;
21
7651251d 22int64_t
7c8931a1 23MemObject::endOffset() const
c8f4eac4 24{
081edc2d 25 // XXX: required by testStore
c8f4eac4 26 return data_hdr.endOffset();
27}
28
081edc2d
AJ
29void MemObject::trimSwappable() STUB
30void MemObject::trimUnSwappable() STUB
31int64_t MemObject::policyLowestOffsetToKeep(bool swap) const STUB_RETVAL(-1)
b56b37cf
AJ
32MemObject::MemObject() {
33 ping_reply_callback = nullptr;
a0b3b22c 34 memset(&start_ping, 0, sizeof(start_ping));
a0b3b22c
AJ
35} // NOP instead of elided due to Store
36
d33098f9
AR
37const char *MemObject::storeId() const STUB_RETVAL(NULL)
38const char *MemObject::logUri() const STUB_RETVAL(NULL)
cb868059 39void MemObject::setUris(char const *aStoreId, char const *aLogUri, const HttpRequestMethod &aMethod) STUB
081edc2d
AJ
40void MemObject::reset() STUB
41void MemObject::delayRead(DeferredRead const &aRead) STUB
42bool MemObject::readAheadPolicyCanRead() const STUB_RETVAL(false)
43void MemObject::setNoDelay(bool const newValue) STUB
44MemObject::~MemObject() STUB
384a7590 45int MemObject::mostBytesWanted(int max, bool ignoreDelayPools) const STUB_RETVAL(-1)
9a0a18de 46#if USE_DELAY_POOLS
081edc2d 47DelayId MemObject::mostBytesAllowed() const STUB_RETVAL(DelayId())
74925dd4 48#endif
4475555f 49void MemObject::write(const StoreIOBuffer &writeBuffer) STUB
081edc2d
AJ
50int64_t MemObject::lowestMemReaderOffset() const STUB_RETVAL(0)
51void MemObject::kickReads() STUB
52int64_t MemObject::objectBytesOnDisk() const STUB_RETVAL(0)
53bool MemObject::isContiguous() const STUB_RETVAL(false)
54int64_t MemObject::expectedReplySize() const STUB_RETVAL(0)
081edc2d
AJ
55void MemObject::markEndOfReplyHeaders() STUB
56size_t MemObject::inUseCount() STUB_RETVAL(0)
5b55f1f1 57int64_t MemObject::availableForSwapOut() const STUB_RETVAL(0)
f53969cc 58