Skip Menu |

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

Report information
The Basics
Id: 23939
Status: resolved
Priority: 0/
Queue: Net-SC

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

Bug Information
Severity: Important
Broken in: 1.20
Fixed in: 1.22



Subject: FQDN address length is sent incorrectly
As a followup to my previous bug, see line 1195: $peer_host = length( $peer_host ) . $peer_host; That should be: $peer_host = pack('C',length( $peer_host )) . $peer_host; This makes the whole thing work.