Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ahl committed Aug 5, 2024
1 parent 28b3d8e commit 98fbfe3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
13 changes: 13 additions & 0 deletions dns-server/src/dns_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,19 @@ use crate::storage::Store;
use anyhow::anyhow;
use anyhow::Context;
use dns_server_api::DnsRecord;
use hickory_proto::op::Header;
use hickory_proto::op::ResponseCode;
use hickory_proto::rr::rdata::SRV;
use hickory_proto::rr::RData;
use hickory_proto::rr::Record;
use hickory_proto::rr::RecordType;
use hickory_proto::serialize::binary::BinDecodable;
use hickory_proto::serialize::binary::BinDecoder;
use hickory_proto::serialize::binary::BinEncoder;
use hickory_resolver::Name;
use hickory_server::authority::MessageRequest;
use hickory_server::authority::MessageResponse;
use hickory_server::authority::MessageResponseBuilder;
use pretty_hex::*;
use serde::Deserialize;
use slog::{debug, error, info, o, trace, Logger};
Expand Down
4 changes: 4 additions & 0 deletions dns-server/src/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@
use anyhow::{anyhow, Context};
use camino::Utf8PathBuf;
use dns_server_api::{DnsConfig, DnsConfigParams, DnsConfigZone, DnsRecord};
use hickory_proto::rr::LowerName;
use hickory_resolver::Name;
use serde::{Deserialize, Serialize};
use sled::transaction::ConflictableTransactionError;
use slog::{debug, error, info, o, warn};
Expand Down Expand Up @@ -782,6 +784,8 @@ mod test {
use dns_server_api::DnsConfigParams;
use dns_server_api::DnsConfigZone;
use dns_server_api::DnsRecord;
use hickory_proto::rr::LowerName;
use hickory_resolver::Name;
use omicron_test_utils::dev::test_setup_log;
use std::collections::BTreeSet;
use std::collections::HashMap;
Expand Down

0 comments on commit 98fbfe3

Please sign in to comment.