Commit 5232e7c1 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Add a stub for kernel_ll_addresses on Mac OS X.

It still won't work, but will at least compile.
Reported by Mathias Mahnke.
parent 92cc622d
......@@ -616,6 +616,14 @@ kernel_addresses(char *ifname, int ifindex,
return -1;
}
int
kernel_ll_addresses(char *ifname, int ifindex,
struct kernel_route *routes, int maxroutes)
{
errno = ENOSYS;
return -1;
}
int
kernel_callback(int (*fn)(int, void*), void *closure)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment