summaryrefslogtreecommitdiffstats
path: root/zebra/linkdetect_null.c
blob: 1f160c8e39d574472314ad072f0e368f1cf6bab4 (plain)
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
26
27
28
/* NULL method for testing. */

#include <zebra.h>


int
if_linkdetect_on (const char *name)
{
  return 0;
}

int
if_linkdetect_off (const char *name)
{
  return 0;
}

int
if_linkdetect_ipv6_on (const char *name)
{
  return 0;
}

int
if_linkdetect_ipv6_off (const char *name)
{
  return 0;
}