client: Add proxy_interface_get_path

This commit is contained in:
Denis Kenzior 2018-09-14 02:53:36 -05:00
parent ad13680420
commit f85685c9e4
2 changed files with 6 additions and 0 deletions

View File

@ -677,6 +677,11 @@ const char *proxy_interface_get_interface(const struct proxy_interface *proxy)
return proxy->type->interface;
}
const char *proxy_interface_get_path(const struct proxy_interface *proxy)
{
return proxy->path;
}
const char *proxy_interface_get_identity_str(
const struct proxy_interface *proxy)
{

View File

@ -97,6 +97,7 @@ char *proxy_property_str_completion(const struct proxy_interface_type *type,
void *proxy_interface_get_data(const struct proxy_interface *proxy);
const char *proxy_interface_get_interface(const struct proxy_interface *proxy);
const char *proxy_interface_get_path(const struct proxy_interface *proxy);
const char *proxy_interface_get_identity_str(
const struct proxy_interface *proxy);