Skip Menu |

This queue is for tickets about the Net-UPnP CPAN distribution.

Report information
The Basics
Id: 75746
Status: new
Priority: 0/
Queue: Net-UPnP

People
Owner: Nobody in particular
Requestors: esch [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 1.4.2
Fixed in: (no value)



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;