blob: c33363e1c7ffb03bf75b606b92d7c33b9f104fc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* 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;
}
|