0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00

modules/s_dns_resolver: Change the server list token to a space.

This commit is contained in:
Jason Volk 2019-03-11 12:32:42 -07:00
parent 6f6e090015
commit ffc652706f

View file

@ -20,7 +20,7 @@ ircd::net::dns::resolver::servers
{
{
{ "name", "ircd.net.dns.resolver.servers" },
{ "default", "4.2.2.1;4.2.2.2;4.2.2.3;4.2.2.4;4.2.2.5;4.2.2.6" },
{ "default", "4.2.2.1 4.2.2.2 4.2.2.3 4.2.2.4 4.2.2.5 4.2.2.6" },
}, []
{
if(bool(ircd::net::dns::resolver))
@ -860,7 +860,7 @@ ircd::net::dns::resolver::set_servers(const string_view &list)
{
server.clear();
server_next = 0;
tokens(list, ';', [this]
tokens(list, ' ', [this]
(const string_view &hp)
{
add_server(hp);