From: Automatic source maintenance Date: Thu, 9 May 2013 00:13:23 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_4_0_1~162 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dc6b5c646e39b5252bbc3249c59c4d46dab1c062;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/tests/Stub.list b/src/tests/Stub.list index 196c3a9fd3..9bdffa0b0f 100644 --- a/src/tests/Stub.list +++ b/src/tests/Stub.list @@ -34,6 +34,7 @@ STUB_SOURCE= tests/STUB.h \ tests/stub_ipc_TypedMsgHdr.cc \ tests/stub_ipcache.cc \ tests/stub_libcomm.cc \ + tests/stub_libeui.cc \ tests/stub_libformat.cc \ tests/stub_libicmp.cc \ tests/stub_libmgr.cc \ diff --git a/src/tests/stub_libeui.cc b/src/tests/stub_libeui.cc index 3bb95848a1..a4b1f75dd5 100644 --- a/src/tests/stub_libeui.cc +++ b/src/tests/stub_libeui.cc @@ -8,18 +8,18 @@ Eui::EuiConfig Eui::TheConfig; #include "eui/Eui48.h" #if USE_SQUID_EUI - const unsigned char *Eui::Eui48::get(void) STUB_RETVAL(NULL) - bool Eui::Eui48::decode(const char *asc) STUB_RETVAL(false) - bool Eui::Eui48::encode(char *buf, const int len) STUB_RETVAL(false) - bool Eui::Eui48::lookup(const Ip::Address &c) STUB_RETVAL(false) +const unsigned char *Eui::Eui48::get(void) STUB_RETVAL(NULL) +bool Eui::Eui48::decode(const char *asc) STUB_RETVAL(false) +bool Eui::Eui48::encode(char *buf, const int len) STUB_RETVAL(false) +bool Eui::Eui48::lookup(const Ip::Address &c) STUB_RETVAL(false) #endif #include "eui/Eui64.h" #if USE_SQUID_EUI - const unsigned char *Eui::Eui64::get(void) STUB_RETVAL(NULL) - bool Eui::Eui64::decode(const char *asc) STUB_RETVAL(false) - bool Eui::Eui64::encode(char *buf, const int len) STUB_RETVAL(false) - bool Eui::Eui64::lookup(const Ip::Address &c) STUB_RETVAL(false) - bool Eui::Eui64::lookupNdp(const Ip::Address &c) STUB_RETVAL(false) - bool Eui::Eui64::lookupSlaac(const Ip::Address &c) STUB_RETVAL(false) +const unsigned char *Eui::Eui64::get(void) STUB_RETVAL(NULL) +bool Eui::Eui64::decode(const char *asc) STUB_RETVAL(false) +bool Eui::Eui64::encode(char *buf, const int len) STUB_RETVAL(false) +bool Eui::Eui64::lookup(const Ip::Address &c) STUB_RETVAL(false) +bool Eui::Eui64::lookupNdp(const Ip::Address &c) STUB_RETVAL(false) +bool Eui::Eui64::lookupSlaac(const Ip::Address &c) STUB_RETVAL(false) #endif