Commit 93d30327 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Add kernel_callback.

parent 7afa4bd9
......@@ -291,3 +291,9 @@ kernel_routes(int maxplen, struct kernel_route *routes, int maxroutes)
fclose(f);
return n;
}
int
kernel_callback()
{
return 0;
}
......@@ -37,3 +37,4 @@ int kernel_interface_wireless(const char *ifname, int ifindex);
int kernel_route(int add, const unsigned char *dest, unsigned short plen,
const unsigned char *gate, int ifindex, unsigned int metric);
int kernel_routes(int maxplen, struct kernel_route *routes, int maxroutes);
int kernel_callback(void);
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