Tftpd32: Rename class

This commit is contained in:
Steffen Lange 2020-05-04 15:21:29 +02:00
parent 29dc19b76a
commit 228881763e

14
modules/Tftpd32.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Tftpd32 extends PatchBase {
function __construct() {
parent::__construct('Philippe Jounin', 'Tftpd64', 'https://tftpd32.jounin.net/tftpd32_download.html');
}
function check() : bool {
if ($this->fetch('https://tftpd32.jounin.net/tftpd32_news.html'))
return $this->parse('/<td>Version ([\d\.]+)<\/td>/');
return false;
}
}
?>