File: stub_libeui.cc

package info (click to toggle)
squid3 3.4.8-6%2Bdeb8u5
  • links: PTS
  • area: main
  • in suites: jessie
  • size: 32,116 kB
  • sloc: cpp: 165,380; ansic: 21,998; sh: 12,166; makefile: 5,974; perl: 2,153; sql: 322; awk: 118
file content (25 lines) | stat: -rw-r--r-- 873 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "squid.h"

#define STUB_API "eui/libeui.la"
#include "STUB.h"

#include "eui/Config.h"
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)
#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)
#endif