Subject: | Broken Port Parameter in request causing it to croak |
In the post routine of UPnP/HTTP.pm it does not assume port 80 when port
is not specified (although most devices/apps DO assume this.)
This causes the search routine to croak at the post request since it is
forcing a blank post_port.
Adding the following line @line 58 of HTTP.pm fixes it:
$post_port = ($post_port ne "")?$post_port:80;