PatchBot/modules/Wireshark.php
2019-07-15 22:27:48 +02:00

14 lines
328 B
PHP

<?php
class Wireshark extends PatchBase {
function __construct() {
parent::__construct('Gerald Combs', 'Wireshark', 'https://www.wireshark.org/');
}
function check() : bool {
if ($this->fetch('https://www.wireshark.org/download.html'))
return $this->parse('/>Stable Release \(([\d\.]+)\)/');
return false;
}
}
?>