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
use std::borrow::Cow;
use std::io::{Result as IoResult, Write};
use byteorder_slice::ByteOrder;
use derive_into_owned::IntoOwned;
use super::block_common::{Block, PcapNgBlock};
use crate::PcapError;
#[derive(Clone, Debug, IntoOwned, Eq, PartialEq)]
pub struct UnknownBlock<'a> {
pub type_: u32,
pub length: u32,
pub value: Cow<'a, [u8]>,
}
impl<'a> UnknownBlock<'a> {
pub fn new(type_: u32, length: u32, value: &'a [u8]) -> Self {
UnknownBlock { type_, length, value: Cow::Borrowed(value) }
}
}
impl<'a> PcapNgBlock<'a> for UnknownBlock<'a> {
fn from_slice<B: ByteOrder>(_slice: &'a [u8]) -> Result<(&[u8], Self), PcapError>
where
Self: Sized,
{
unimplemented!("UnkknownBlock::<as PcapNgBlock>::From_slice shouldn't be called")
}
fn write_to<B: ByteOrder, W: Write>(&self, writer: &mut W) -> IoResult<usize> {
writer.write_all(&self.value)?;
Ok(self.value.len())
}
fn into_block(self) -> Block<'a> {
Block::Unknown(self)
}
}