GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::UPnP::Service(3) User Contributed Perl Documentation Net::UPnP::Service(3)

Net::UPnP::Service - Perl extension for UPnP.

    use Net::UPnP::ControlPoint;

    my $obj = Net::UPnP::ControlPoint->new();

    @dev_list = $obj->search(st =>'upnp:rootdevice', mx => 3);

    $devNum= 0;
    foreach $dev (@dev_list) {
        $device_type = $dev->getdevicetype();
        if  ($device_type ne 'urn:schemas-upnp-org:device:MediaServer:1') {
            next;
        }
        print "[$devNum] : " . $dev->getfriendlyname() . "\n";
        unless ($dev->getservicebyname('urn:schemas-upnp-org:service:ContentDirectory:1')) {
            next;
        }
        $condir_service = $dev->getservicebyname('urn:schemas-upnp-org:service:ContentDirectory:1');
        unless (defined(condir_service)) {
            next;
        }
        %action_in_arg = (
                'ObjectID' => 0,
                'BrowseFlag' => 'BrowseDirectChildren',
                'Filter' => '*',
                'StartingIndex' => 0,
                'RequestedCount' => 0,
                'SortCriteria' => '',
            );
        $action_res = $condir_service->postcontrol('Browse', \%action_in_arg);
        unless ($action_res->getstatuscode() == 200) {
                next;
        }
        $actrion_out_arg = $action_res->getargumentlist();
        unless ($actrion_out_arg->{'Result'}) {
            next;
        }
        $result = $actrion_out_arg->{'Result'};
        while ($result =~ m/<dc:title>(.*?)<\/dc:title>/sgi) {
            print "\t$1\n";
        }
        $devNum++;
    }

The package is used a object of UPnP service.

getdevice - get the device.
    $description = $service->getdevice();
    

Get the parent device of the service.

getdevicedescription - get the service description of the device description.
    $description = $service->getdevicedescription(
                                name => $name # undef
                             );
    

Get the service description of the device description.

The function returns the all description when the name parameter is not specified, otherwise return a value the specified name.

getservicetype - get the service type.
    $service_type = $service->getservicetype();
    

Get the service type.

getserviceid - get the service id.
    $service_id = $service->getserviceid();
    

Get the service id.

postaction - post a action control.
    $action_res = $service->postcontrol($action_name, \%action_arg);
    

Post a action control to the device, and return Net::UPnP::ActionResponse.

The method was renamed from postcontrol(), but the old name is deprecated.

postquery - post a query control.
    $query_res = $service->postcontrol($var_name);
    

Post a query control to the device, and return Net::UPnP::QueryResponse.

Net::UPnP::ActionResponse

Satoshi Konno skonno@cybergarage.org

CyberGarage http://www.cybergarage.org

Copyright (C) 2005 by Satoshi Konno

It may be used, redistributed, and/or modified under the terms of BSD License.

2018-12-23 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.