/*
 * Copyright (C) 1996-2023 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.
 */

/* DEBUG: section 20    Storage Manager */

#include "squid.h"

#if USE_DELAY_POOLS
#include "BandwidthBucket.h"
#include "DelayId.h"

#define STUB_API "stub_DelayId.cc"
#include "tests/STUB.h"

DelayId::DelayId(): pool_(0), compositeId(nullptr), markedAsNoDelay(false) {}
DelayId::~DelayId() {}

void DelayId::delayRead(const AsyncCallPointer &) STUB_NOP
void BandwidthBucket::refillBucket() STUB
bool BandwidthBucket::applyQuota(int &, Comm::IoCallback *) STUB_RETVAL(false)
BandwidthBucket *BandwidthBucket::SelectBucket(fde *) STUB_RETVAL(nullptr)
void BandwidthBucket::reduceBucket(const int) STUB

#endif /* USE_DELAY_POOLS */

