]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_libeui.cc
Bug 5428: Warn if pkg-config is not found (#1902)
[thirdparty/squid.git] / src / tests / stub_libeui.cc
CommitLineData
4e0938ef 1/*
b8ae064d 2 * Copyright (C) 1996-2023 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
83b62d3f
AJ
9#include "squid.h"
10
11#define STUB_API "eui/libeui.la"
44e802f4 12#include "tests/STUB.h"
83b62d3f
AJ
13
14#include "eui/Config.h"
15Eui::EuiConfig Eui::TheConfig;
16
17#include "eui/Eui48.h"
18#if USE_SQUID_EUI
aee3523a 19const unsigned char *Eui::Eui48::get(void) STUB_RETVAL(nullptr)
8b082ed9
FC
20bool Eui::Eui48::decode(const char *) STUB_RETVAL(false)
21bool Eui::Eui48::encode(char *, const int) const STUB_RETVAL(false)
22bool Eui::Eui48::lookup(const Ip::Address &) STUB_RETVAL(false)
83b62d3f
AJ
23#endif
24
25#include "eui/Eui64.h"
26#if USE_SQUID_EUI
aee3523a 27const unsigned char *Eui::Eui64::get(void) STUB_RETVAL(nullptr)
8b082ed9
FC
28bool Eui::Eui64::decode(const char *) STUB_RETVAL(false)
29bool Eui::Eui64::encode(char *, const int) const STUB_RETVAL(false)
30bool Eui::Eui64::lookup(const Ip::Address &) STUB_RETVAL(false)
31bool Eui::Eui64::lookupNdp(const Ip::Address &) STUB_RETVAL(false)
32bool Eui::Eui64::lookupSlaac(const Ip::Address &) STUB_RETVAL(false)
83b62d3f 33#endif
f53969cc 34