1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use crate::dns::DnsPacketContent;
use std::{convert::TryInto, net::Ipv4Addr};
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
pub struct A {
pub address: u32,
}
impl<'a> DnsPacketContent<'a> for A {
fn parse(data: &'a [u8], position: usize) -> crate::Result<Self>
where
Self: Sized,
{
let address = u32::from_be_bytes(data[position..position + 4].try_into()?);
Ok(Self { address })
}
fn append_to_vec(&self, out: &mut Vec<u8>) -> crate::Result<()> {
out.extend(self.address.to_be_bytes());
Ok(())
}
fn len(&self) -> usize {
4
}
}
impl From<Ipv4Addr> for A {
fn from(addr: Ipv4Addr) -> Self {
Self {
address: addr.into(),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn parse_and_write_a() {
let a = A {
address: 2130706433,
};
let mut bytes = Vec::new();
assert!(a.append_to_vec(&mut bytes).is_ok());
let a = A::parse(&bytes, 0);
assert!(a.is_ok());
let a = a.unwrap();
assert_eq!(2130706433, a.address);
assert_eq!(bytes.len(), a.len());
}
}