| Top |  |  |  |  | 
| void | rygel_dbus_interface_shutdown () | 
| void | rygel_dbus_acl_provider_is_allowed () | 
| gboolean | rygel_dbus_acl_provider_is_allowed_finish () | 
void rygel_dbus_interface_shutdown (RygelDBusInterface *self,GError **error);
| self | the RygelDBusInterface instance | |
| error | location to store the error occuring, or  | [error-domains GIOErrorEnum GDBusError] | 
void rygel_dbus_acl_provider_is_allowed (RygelDBusAclProvider *self,GHashTable *device,GHashTable *service,const gchar *path,const gchar *address,const gchar *agent,GAsyncReadyCallback _callback_,gpointer _user_data_);
See also: rygel_dbus_acl_provider_is_allowed_finish()
| self | the RygelDBusAclProvider instance | |
| device | 
 | |
| service | 
 | |
| path | 
 | |
| address | 
 | |
| agent | 
 | |
| _callback_ | callback to call when the request is satisfied. | [scope async] | 
| _user_data_ | the data to pass to  | [closure] | 
gboolean rygel_dbus_acl_provider_is_allowed_finish (RygelDBusAclProvider *self,GAsyncResult *_res_,GError **error);
See also: rygel_dbus_acl_provider_is_allowed()
| self | the RygelDBusAclProvider instance | |
| _res_ | a GAsyncResult | |
| error | location to store the error occuring, or  | [error-domains GDBusError GIOErrorEnum] | 
struct RygelDBusInterfaceIface {
	GTypeInterface parent_iface;
	void (*shutdown) (RygelDBusInterface* self, GError** error);
};
Interface for creating RygelDBusInterface implementations.
#define RYGEL_DBUS_ACL_PROVIDER_SERVICE_NAME "org.gnome.Rygel1.AclProvider1"
#define RYGEL_DBUS_ACL_PROVIDER_OBJECT_PATH "/org/gnome/Rygel1/AclProvider1"
struct RygelDBusAclProviderIface {
	GTypeInterface parent_iface;
	void (*is_allowed) (RygelDBusAclProvider* self, GHashTable* device, GHashTable* service, const gchar* path, const gchar* address, const gchar* agent, GAsyncReadyCallback _callback_, gpointer _user_data_);
	gboolean (*is_allowed_finish) (RygelDBusAclProvider* self, GAsyncResult* _res_, GError** error);
};
Interface for creating RygelDBusAclProvider implementations.
| the parent interface structure | ||
| virtual method called by  | ||
| asynchronous finish function for  |