]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Thu, 9 May 2013 00:13:23 +0000 (18:13 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Thu, 9 May 2013 00:13:23 +0000 (18:13 -0600)
src/tests/Stub.list
src/tests/stub_libeui.cc

index 196c3a9fd3e3cd2592d4ff8820c990fe011c9c9a..9bdffa0b0f289530b38ad9d4cb8c568f2a7752d1 100644 (file)
@@ -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 \
index 3bb95848a14e5b3e74bd9039558f4dffc6c9ed2b..a4b1f75dd541932fd1b7f4b273f358e6e6bfcec2 100644 (file)
@@ -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