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.