ZF-3899: Zend_TimeSync_Sntp use tcp instead of documented udp protocol
Description
zend manuel: SNTP uses UDP port 37 as it's transport layer.
but Zend_TimeSync_Sntp:
public function __construct($timeserver, $port)
{
$this->_timeserver = 'tcp://' . $timeserver;
if (is_null($port) === false) {
$this->_port = $port;
}
}
Comments
Posted by Thomas Weidner (thomas) on 2008-08-08T15:28:50.000+0000
Fixed with r10835