GoLang gupnp_root_device_new

request it (317)
GoLang replacement for PHP's gupnp_root_device_new [edit | history]



Do you know a GoLang replacement for PHP's gupnp_root_device_new? Write it!

PHP gupnp_root_device_new

PHP original manual for gupnp_root_device_new [ show | php.net ]

gupnp_root_device_new

(PECL gupnp >= 0.1.0)

gupnp_root_device_newCreate a new root device

Description

resource gupnp_root_device_new ( resource $context , string $location , string $description_dir )

Create a new root device, automatically downloading and parsing location.

Parameters

context

A context identifier, returned by gupnp_context_new().

location

Location of the description file for this device, relative to the HTTP root

Return Values

A root device identifier.

Examples

Example #1 Create new UPnP context and get device info service

<?php

/* Create the UPnP context */
$context gupnp_context_new();

if (!
$context) {
 die(
"Error creating the GUPnP context\n");
}

/* Create root device */
$location "/BinaryLight1.xml";
$dev gupnp_root_device_new($context$location);

?>

See Also