mirror of
https://github.com/danog/dns-over-https.git
synced 2025-01-22 13:21:20 +01:00
13 lines
148 B
PHP
13 lines
148 B
PHP
<?php
|
|
|
|
namespace Amp\DoH;
|
|
|
|
use Amp\Dns\ConfigException;
|
|
|
|
enum NameserverType
|
|
{
|
|
case RFC8484_GET;
|
|
case RFC8484_POST;
|
|
case GOOGLE_JSON;
|
|
}
|