Skip to main content

Mountain/Binary/Build/DnsCommands/
ForwardAllowList.rs

1#![allow(non_snake_case)]
2
3//! Allowed external domains the DNS server may forward queries
4//! to. Returned by `dns_get_forward_allowlist`.
5
6use serde::{Deserialize, Serialize};
7
8#[derive(Debug, Clone, Serialize, Deserialize)]
9pub struct ForwardAllowList {
10	pub domains:Vec<String>,
11}