Skip to content

Commit

Permalink
Fix: dnssec_message_procesing.rs dependecies problem
Browse files Browse the repository at this point in the history
  • Loading branch information
EstudianteGenerico047 committed Jul 15, 2024
1 parent e11700f commit a6157b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dnssec/dnssec_message_processing.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
use crate::message::{DnsMessage, Rdata, ResourceRecord};
use crate::message::DnsMessage;
use crate::message::rdata::Rdata;
use crate::message::resource_record::ResourceRecord;

pub fn extract_dnssec_records(dns_response: &DnsMessage) -> (Vec<ResourceRecord>, Vec<ResourceRecord>) {
let answers = dns_response.get_answer();
Expand Down

0 comments on commit a6157b9

Please sign in to comment.