Squid Web Cache master
Loading...
Searching...
No Matches
stub_fde.cc
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2026 The Squid Software Foundation and contributors
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
9#include "squid.h"
10
11#define STUB_API "fde.cc"
12#include "tests/STUB.h"
13
14#include "fde.h"
15void fde::Init() STUB
16void fde::setIo(READ_HANDLER *, WRITE_HANDLER *) STUB
17void fde::useDefaultIo() STUB
18void fde::useBufferedIo(READ_HANDLER *, WRITE_HANDLER *) STUB
19void fde::DumpStats(StoreEntry *) STUB
20char const *fde::remoteAddr() const STUB_RETVAL(nullptr)
21void fde::dumpStats(StoreEntry &, int) const STUB
22bool fde::readPending(int) const STUB_RETVAL(false)
23fde* fde::Table = nullptr;
#define STUB
macro to stub a void function.
Definition STUB.h:34
#define STUB_RETVAL(x)
Definition STUB.h:42
Definition fde.h:52
static void Init()
Definition fde.cc:141
int READ_HANDLER(int, char *, int)
Definition fde.h:31
int WRITE_HANDLER(int, const char *, int)
Definition fde.h:37