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
use super::*;
use crate::error::*;
use crate::message::packer::*;
#[derive(Default, Debug, Clone, PartialEq, Eq)]
pub struct TxtResource {
pub txt: Vec<String>,
}
impl fmt::Display for TxtResource {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if self.txt.is_empty() {
write!(f, "dnsmessage.TXTResource{{txt: {{}}}}",)
} else {
write!(f, "dnsmessage.TXTResource{{txt: {{{}}}", self.txt.join(","))
}
}
}
impl ResourceBody for TxtResource {
fn real_type(&self) -> DnsType {
DnsType::Txt
}
fn pack(
&self,
mut msg: Vec<u8>,
_compression: &mut Option<HashMap<String, usize>>,
_compression_off: usize,
) -> Result<Vec<u8>> {
for s in &self.txt {
msg = pack_str(msg, s)?
}
Ok(msg)
}
fn unpack(&mut self, msg: &[u8], mut off: usize, length: usize) -> Result<usize> {
let mut txts = vec![];
let mut n = 0;
while n < length {
let (t, new_off) = unpack_str(msg, off)?;
off = new_off;
if length < n + t.as_bytes().len() + 1 {
return Err(Error::ErrCalcLen);
}
n += t.len() + 1;
txts.push(t);
}
self.txt = txts;
Ok(off)
}
}