Query: net::upnp::controlpoint
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Net::UPnP::ControlPoint(3pm) User Contributed Perl Documentation Net::UPnP::ControlPoint(3pm)NAMENet::UPnP::ControlPoint - Perl extension for UPnP control point.SYNOPSISuse 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() . " "; 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); $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 " $1 "; } $devNum++; }DESCRIPTIONThe package can search UPnP devices in the local network and get the device list of Net::UPnP::Device.METHODSnew - create new Net::UPnP::ControlPoint $ctrlPoint = Net::UPnP::ControlPoint(); Creates a new object. Read `perldoc perlboot` if you don't understand that. search - search UPnP devices @device_list = $ctrlPoint->search(); @device_list = $ctrlPoint->search( [st => $search_target], # 'upnp:rootdevice' [mx => $maximum_wait] # 3 ); Search UPnP devices and return the device list. Please see Net::UPnP::Device too.SEE ALSONet::UPnP::DeviceAUTHORSatoshi Konno skonno@cybergarage.org CyberGarage http://www.cybergarage.orgCOPYRIGHT AND LICENSECopyright (C) 2005 by Satoshi Konno It may be used, redistributed, and/or modified under the terms of BSD License. perl v5.10.1 2009-07-27 Net::UPnP::ControlPoint(3pm)
Similar Topics in the Unix Linux Community |
---|
S-120: Universal Plug and Play Vulnerability |
Coherence 0.5.2 (Default branch) |
GUPnP 0.3 (GUPnP Tools branch) |
GUPnP 0.1 (GUPnP A/V branch) |
UPnP-Inspector 0.2.0 (Default branch) |