Make it easy to check if an address is locally usable via changed get_interface() method

This commit is contained in:
Tobias Brunner
2012-09-21 18:16:26 +02:00
parent aed33805ce
commit 9ba36c0f7f
10 changed files with 64 additions and 67 deletions
+3 -3
View File
@@ -291,14 +291,14 @@ METHOD(kernel_interface_t, get_nexthop, host_t*,
return this->net->get_nexthop(this->net, dest, src);
}
METHOD(kernel_interface_t, get_interface, char*,
private_kernel_interface_t *this, host_t *host)
METHOD(kernel_interface_t, get_interface, bool,
private_kernel_interface_t *this, host_t *host, char **name)
{
if (!this->net)
{
return NULL;
}
return this->net->get_interface(this->net, host);
return this->net->get_interface(this->net, host, name);
}
METHOD(kernel_interface_t, create_address_enumerator, enumerator_t*,