PatchBot/modules/Tftpd32.php
2021-05-12 12:05:34 +02:00

14 lines
344 B
PHP

<?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://pjo2.github.io/tftpd64/'))
return $this->parse('_/[Tt]ftpd64-([\d\.]+)-setup\.exe_');
return false;
}
}
?>