]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_libeui.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_libeui.cc
CommitLineData
4e0938ef 1/*
4ac4a490 2 * Copyright (C) 1996-2017 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"
12#include "STUB.h"
13
14#include "eui/Config.h"
15Eui::EuiConfig Eui::TheConfig;
16
17#include "eui/Eui48.h"
18#if USE_SQUID_EUI
dc6b5c64
A
19const unsigned char *Eui::Eui48::get(void) STUB_RETVAL(NULL)
20bool Eui::Eui48::decode(const char *asc) STUB_RETVAL(false)
4c79ed3d 21bool Eui::Eui48::encode(char *buf, const int len) const STUB_RETVAL(false)
dc6b5c64 22bool Eui::Eui48::lookup(const Ip::Address &c) STUB_RETVAL(false)
83b62d3f
AJ
23#endif
24
25#include "eui/Eui64.h"
26#if USE_SQUID_EUI
dc6b5c64
A
27const unsigned char *Eui::Eui64::get(void) STUB_RETVAL(NULL)
28bool Eui::Eui64::decode(const char *asc) STUB_RETVAL(false)
52131350 29bool Eui::Eui64::encode(char *buf, const int len) const STUB_RETVAL(false)
dc6b5c64
A
30bool Eui::Eui64::lookup(const Ip::Address &c) STUB_RETVAL(false)
31bool Eui::Eui64::lookupNdp(const Ip::Address &c) STUB_RETVAL(false)
32bool Eui::Eui64::lookupSlaac(const Ip::Address &c) STUB_RETVAL(false)
83b62d3f 33#endif
f53969cc 34