in reply to Re^2: UPnP - port forward through a router?
in thread UPnP - port forward through a router?
It seems you want to make a control point, somehow locate the devices, and then issue a postaction. I'm fuzzy on the details, but I bet it looks something like this:
use Net::UPnP::ControlPoint; my $obj = Net::UPnP::ControlPoint->new(); my @dev_list = $obj->search(st =>'????', mx => 3); my $service = $dev->getservicebyname('?????'); $service->postaction('????', { ??? => ???});
-Paul
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: UPnP - port forward through a router?
by ethrbunny (Monk) on Oct 09, 2007 at 14:03 UTC |