Add Technitium DNS Server

This commit is contained in:
Steffen Lange 2025-10-31 14:08:28 +01:00
parent 63c64c0bdc
commit 753718cd01

View file

@ -0,0 +1,14 @@
<?php
class TechnitiumDNSServer extends PatchBase {
function __construct() {
parent::__construct('Shreyas Zare', 'Technitium DNS Server', 'https://technitium.com/dns/');
}
function check() : bool {
if ($this->fetch('https://technitium.com/dns/'))
return $this->parse('/>Version ([\d\.]+)</');
return false;
}
}
?>