![]() |
![]() |
![]() |
GSSDP Reference Manual | ![]() |
---|---|---|---|---|
GSSDPResourceGroup; GSSDPResourceGroup* gssdp_resource_group_new (GSSDPClient *client); GSSDPClient* gssdp_resource_group_get_client (GSSDPResourceGroup *resource_group); void gssdp_resource_group_set_max_age (GSSDPResourceGroup *resource_group, guint max_age); guint gssdp_resource_group_get_max_age (GSSDPResourceGroup *resource_group); void gssdp_resource_group_set_available (GSSDPResourceGroup *resource_group, gboolean available); gboolean gssdp_resource_group_get_available (GSSDPResourceGroup *resource_group); guint gssdp_resource_group_add_resource (GSSDPResourceGroup *resource_group, const char *target, const char *usn, GList *locations); guint gssdp_resource_group_add_resource_simple (GSSDPResourceGroup *resource_group, const char *target, const char *usn, const char *location); void gssdp_resource_group_remove_resource (GSSDPResourceGroup *resource_group, guint resource_id);
A GSSDPResourceGroup is a group of SSDP resources whose availability can be controlled as one. This is useful when one needs to announce a single service as multiple SSDP resources (UPnP does this for example).
typedef struct { GObject parent; GSSDPResourceGroupPrivate *priv; } GSSDPResourceGroup;
GSSDPResourceGroup* gssdp_resource_group_new (GSSDPClient *client);
client : |
The GSSDPClient to associate with |
Returns : | A new GSSDPResourceGroup object. |
GSSDPClient* gssdp_resource_group_get_client (GSSDPResourceGroup *resource_group);
resource_group : |
A GSSDPResourceGroup |
Returns : | The GSSDPClient resource_group is associated with.
|
void gssdp_resource_group_set_max_age (GSSDPResourceGroup *resource_group, guint max_age);
Sets the number of seconds advertisements are valid to max_age
.
resource_group : |
A GSSDPResourceGroup |
max_age : |
guint gssdp_resource_group_get_max_age (GSSDPResourceGroup *resource_group);
resource_group : |
A GSSDPResourceGroup |
Returns : | The number of seconds advertisements are valid. |
void gssdp_resource_group_set_available (GSSDPResourceGroup *resource_group, gboolean available);
Sets resource_group
s availability to available
. Changing
resource_group
s availability causes it to announce its new state
to listening SSDP clients.
resource_group : |
A GSSDPResourceGroup |
available : |
TRUE if resource_group should be available (advertised)
|
gboolean gssdp_resource_group_get_available (GSSDPResourceGroup *resource_group);
resource_group : |
A GSSDPResourceGroup |
Returns : | TRUE if resource_group is available (advertised).
|
guint gssdp_resource_group_add_resource (GSSDPResourceGroup *resource_group, const char *target, const char *usn, GList *locations);
Adds a resource with target target
, USN usn
, and locations locations
to resource_group
.
resource_group : |
An GSSDPResourceGroup
|
target : |
The resource's target |
usn : |
The resource's USN |
locations : |
A GList of the resource's locations |
Returns : | The ID of the added resource. |
guint gssdp_resource_group_add_resource_simple (GSSDPResourceGroup *resource_group, const char *target, const char *usn, const char *location);
Adds a resource with target target
, USN usn
, and location location
to resource_group
.
resource_group : |
An GSSDPResourceGroup
|
target : |
The resource's target |
usn : |
The resource's USN |
location : |
The resource's location |
Returns : | The ID of the added resource. |
void gssdp_resource_group_remove_resource (GSSDPResourceGroup *resource_group, guint resource_id);
Removes the resource with ID resource_id
from resource_group
.
resource_group : |
An GSSDPResourceGroup
|
resource_id : |
The ID of the resource to remove |