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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
//! Module to interact with the controls for the extcap program. There are two
//! aspects of "controls" handled in this module:
//!
//! 1. The toolbar controls in the Wireshark interface, when the user selects
//! `View > Interface Toolbars`. This module helps define UI elements on that
//! toolbar and react to user interactions performed on them.
//! 2. The control packets exchanged between this extcap program and Wireshark.
//! Besides the UI toolbar elements above, control packets are also used for
//! things like displaying status bar and dialog messages, as well as for
//! Wireshark to send events like `Initialized`.
use std::borrow::Cow;
use nom::number::streaming::be_u24;
use nom_derive::Nom;
use typed_builder::TypedBuilder;
use crate::PrintSentence;
#[cfg(feature = "async")]
use asynchronous::ExtcapControlSenderTrait as _;
#[cfg(feature = "sync")]
use synchronous::ExtcapControlSenderTrait as _;
#[cfg(feature = "async")]
pub mod asynchronous;
#[cfg(feature = "sync")]
pub mod synchronous;
/// A `ToolbarControl` that can be enabled or disabled.
pub trait EnableableControl: ToolbarControl {
/// Sets whether the control is enabled or disabled.
///
/// Returns a `ControlPacket` that can be sent using a
/// [`synchronous::ExtcapControlSender`] or
/// [`asynchronous::ExtcapControlSender`].
fn set_enabled(&self, enabled: bool) -> ControlPacket<'static> {
ControlPacket::new_with_payload(
self.control_number(),
if enabled {
ControlCommand::Enable
} else {
ControlCommand::Disable
},
&[][..],
)
}
}
/// A [`ToolbarControl`] that has a customizable label.
pub trait ControlWithLabel: ToolbarControl {
/// Sets the label of this control.
///
/// Returns a `ControlPacket` that can be sent using a
/// [`synchronous::ExtcapControlSender`] or
/// [`asynchronous::ExtcapControlSender`].
fn set_label<'a>(&self, label: &'a str) -> ControlPacket<'a> {
ControlPacket::new_with_payload(
self.control_number(),
ControlCommand::Set,
label.as_bytes(),
)
}
}
/// A checkbox which lets the user set a true / false value.
///
/// The extcap utility can set a default value at startup, change the value
/// using [`set_checked`][Self::set_checked], and receive value changes from an
/// [`ExtcapControlReader`][asynchronous::ExtcapControlReader]. When starting a
/// capture Wireshark will send the value if different from the default value.
#[derive(Debug, TypedBuilder)]
pub struct BooleanControl {
/// The control number, a unique identifier for this control.
pub control_number: u8,
/// The user-visible label for the check box.
#[builder(setter(into))]
pub display: String,
/// Tooltip shown when hovering over the UI element.
#[builder(default, setter(strip_option, into))]
pub tooltip: Option<String>,
/// Whether the control should be checked or unchecked by default
#[builder(default = false)]
pub default_value: bool,
}
impl EnableableControl for BooleanControl {}
impl ControlWithLabel for BooleanControl {}
impl BooleanControl {
/// Set whether this checkbox is checked.
pub fn set_checked<'a>(&self, checked: bool) -> ControlPacket<'a> {
ControlPacket::new_with_payload(
self.control_number(),
ControlCommand::Set,
vec![checked as u8],
)
}
}
impl PrintSentence for BooleanControl {
fn format_sentence(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "control {{number={}}}", self.control_number())?;
write!(f, "{{type=boolean}}")?;
write!(f, "{{display={}}}", self.display)?;
write!(f, "{{default={}}}", self.default_value)?;
if let Some(tooltip) = &self.tooltip {
write!(f, "{{tooltip={}}}", tooltip)?;
}
writeln!(f)
}
}
impl ToolbarControl for BooleanControl {
fn control_number(&self) -> u8 {
self.control_number
}
}
/// Button that sends a signal when pressed. The button is only enabled when
/// capturing.
///
/// The extcap utility can set the button text at startup using the `display`
/// field, change the button text using
/// [`set_label`][ControlWithLabel::set_label], and receive button press signals
/// from an [`ExtcapControlReader`][asynchronous::ExtcapControlReader].
///
/// The button is disabled and the button text is restored to the default text
/// when not capturing.
#[derive(Debug, TypedBuilder)]
pub struct ButtonControl {
/// The control number, a unique identifier for this control.
pub control_number: u8,
/// The user-visible label for the button.
#[builder(setter(into))]
pub display: String,
/// Tooltip shown when hovering over the UI element.
#[builder(default, setter(strip_option, into))]
pub tooltip: Option<String>,
}
impl EnableableControl for ButtonControl {}
impl ControlWithLabel for ButtonControl {}
impl ToolbarControl for ButtonControl {
fn control_number(&self) -> u8 {
self.control_number
}
}
impl PrintSentence for ButtonControl {
fn format_sentence(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "control {{number={}}}", self.control_number())?;
write!(f, "{{type=button}}")?;
write!(f, "{{display={}}}", self.display)?;
if let Some(tooltip) = &self.tooltip {
write!(f, "{{tooltip={}}}", tooltip)?;
}
writeln!(f)
}
}
/// A logger mechanism where the extcap utility can send log entries to be
/// presented in a log window. This communication is unidirectional from this
/// extcap program to Wireshark.
///
/// A button will be displayed in the toolbar which will open the log window
/// when clicked.
#[derive(Debug, TypedBuilder)]
pub struct LoggerControl {
/// The control number, a unique identifier for this control.
pub control_number: u8,
/// Label of the button that opens the log window.
#[builder(setter(into))]
pub display: String,
/// Tooltip shown when hovering over the UI element.
#[builder(default, setter(strip_option, into))]
pub tooltip: Option<String>,
}
impl LoggerControl {
/// Clear the log and add the given log the entry to the window.
pub fn clear_and_add_log<'a>(&self, log: Cow<'a, str>) -> ControlPacket<'a> {
ControlPacket::new_with_payload(
self.control_number(),
ControlCommand::Set,
format!("{}\n", log).into_bytes(),
)
}
/// Add the log entry to the log window.
pub fn add_log<'a>(&self, log: Cow<'a, str>) -> ControlPacket<'a> {
ControlPacket::new_with_payload(
self.control_number(),
ControlCommand::Add,
format!("{}\n", log).into_bytes(),
)
}
}
impl ToolbarControl for LoggerControl {
fn control_number(&self) -> u8 {
self.control_number
}
}
impl PrintSentence for LoggerControl {
fn format_sentence(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "control {{number={}}}", self.control_number())?;
write!(f, "{{type=button}}")?;
write!(f, "{{role=logger}}")?;
write!(f, "{{display={}}}", self.display)?;
if let Some(tooltip) = &self.tooltip {
write!(f, "{{tooltip={tooltip}}}")?;
}
writeln!(f)
}
}
/// A button in the toolbar that opens the help URL when clicked. The URL it
/// opens is defined in [`Metadata::help_url`][crate::interface::Metadata::help_url].
#[derive(Debug, TypedBuilder)]
pub struct HelpButtonControl {
/// The control number, a unique identifier for this control.
pub control_number: u8,
/// Label of the button that opens the help URL.
#[builder(setter(into))]
pub display: String,
/// Tooltip shown when hovering over the UI element.
#[builder(default, setter(strip_option, into))]
pub tooltip: Option<String>,
}
impl ToolbarControl for HelpButtonControl {
fn control_number(&self) -> u8 {
self.control_number
}
}
impl PrintSentence for HelpButtonControl {
fn format_sentence(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "control {{number={}}}", self.control_number())?;
write!(f, "{{type=button}}")?;
write!(f, "{{role=help}}")?;
write!(f, "{{display={}}}", self.display)?;
if let Some(tooltip) = &self.tooltip {
write!(f, "{{tooltip={tooltip}}}")?;
}
writeln!(f)
}
}
/// This button will restore all control values to default. The button is only
/// enabled when not capturing.
#[derive(Debug, TypedBuilder)]
pub struct RestoreButtonControl {
/// The control number, a unique identifier for this control.
pub control_number: u8,
/// Label of the button.
#[builder(setter(into))]
pub display: String,
/// Tooltip shown when hovering over the UI element.
#[builder(default, setter(strip_option, into))]
pub tooltip: Option<String>,
}
impl ToolbarControl for RestoreButtonControl {
fn control_number(&self) -> u8 {
self.control_number
}
}
impl PrintSentence for RestoreButtonControl {
fn format_sentence(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "control {{number={}}}", self.control_number())?;
write!(f, "{{type=button}}")?;
write!(f, "{{role=restore}}")?;
write!(f, "{{display={}}}", self.display)?;
if let Some(tooltip) = &self.tooltip {
write!(f, "{{tooltip={tooltip}}}")?;
}
writeln!(f)
}
}
/// A dropdown selector with fixed values which can be selected.
///
/// Default values can be provided using the `options` field. When starting
/// a capture, Wireshark will send the value as a command line flag if the
/// selected value is different from the default value.
#[derive(Debug, TypedBuilder)]
pub struct SelectorControl {
/// The control number, a unique identifier for this control.
pub control_number: u8,
/// The user-visible label of this selector, displayed next to the drop down
/// box.
#[builder(setter(into))]
pub display: String,
/// Tooltip shown when hovering over the UI element.
#[builder(default, setter(strip_option, into))]
pub tooltip: Option<String>,
/// The list of options available for selection in this selector.
#[builder(default, setter(into))]
pub options: Vec<SelectorControlOption>,
}
impl SelectorControl {
/// Add an option to the selector dynamically.
pub fn set_value<'a>(&self, value: &'a str) -> ControlPacket<'a> {
ControlPacket::new_with_payload(
self.control_number(),
ControlCommand::Set,
value.as_bytes(),
)
}
/// Add an option to the selector dynamically.
pub fn add_value<'a>(&self, value: &'a str, display: Option<&'a str>) -> ControlPacket<'a> {
let payload_bytes: Cow<'a, [u8]> = match display {
Some(d) => Cow::Owned(format!("{}\0{}", value, d).as_bytes().to_vec()),
None => Cow::Borrowed(value.as_bytes()),
};
ControlPacket::new_with_payload(self.control_number(), ControlCommand::Add, payload_bytes)
}
/// Removes an option from the selector.
///
/// Panics: If `value` is an empty string.
pub fn remove_value<'a>(&self, value: &'a str) -> ControlPacket<'a> {
assert!(
!value.is_empty(),
"Argument to remove_value must not be empty"
);
ControlPacket::new_with_payload(
self.control_number(),
ControlCommand::Remove,
value.as_bytes(),
)
}
/// Clears all options from the selector.
pub fn clear(&self) -> ControlPacket<'static> {
ControlPacket::new_with_payload(self.control_number(), ControlCommand::Remove, &[][..])
}
}
impl ToolbarControl for SelectorControl {
fn control_number(&self) -> u8 {
self.control_number
}
}
impl PrintSentence for SelectorControl {
fn format_sentence(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"control {{number={}}}{{type=selector}}",
self.control_number()
)?;
write!(f, "{{display={}}}", self.display)?;
if let Some(tooltip) = &self.tooltip {
write!(f, "{{tooltip={}}}", tooltip)?;
}
writeln!(f)?;
for value in self.options.iter() {
value.format_sentence(f, self)?;
}
Ok(())
}
}
/// An option in a [`SelectorControl`].
#[derive(Clone, Debug, TypedBuilder)]
pub struct SelectorControlOption {
/// The value that is sent in the payload of the [`ControlPacket`] when this
/// option is selected.
#[builder(setter(into))]
pub value: String,
/// The user visible label for this option.
#[builder(setter(into))]
pub display: String,
/// Whether this option is selected as the default.
#[builder(default)]
pub default: bool,
}
impl SelectorControlOption {
/// Writes the extcap config sentence for this option to the formatter. See
/// the documentation for [`ExtcapFormatter`][crate::ExtcapFormatter] for
/// details.
pub fn format_sentence<C: ToolbarControl>(
&self,
f: &mut std::fmt::Formatter<'_>,
control: &C,
) -> std::fmt::Result {
write!(
f,
"value {{control={}}}{{value={}}}{{display={}}}",
control.control_number(),
self.value,
self.display,
)?;
if self.default {
write!(f, "{{default=true}}")?;
}
writeln!(f)?;
Ok(())
}
}
/// A text field toolbar control element.
///
/// Maximum length is accepted by a `StringControl` is 32767 bytes.
///
/// The default string value can be set at startup, and the value can be changed
/// dynamically while capturing. When the value changes or is different form the
/// default, its value will be sent as a [`ControlPacket`] during capture.
#[derive(Debug, Default, TypedBuilder)]
pub struct StringControl {
/// The control number, a unique identifier for this control.
pub control_number: u8,
/// A user-visible label for this control.
#[builder(setter(into))]
pub display: String,
/// An optional tooltip that is shown when hovering on the UI element.
#[builder(setter(into, strip_option))]
pub tooltip: Option<String>,
/// An optional placeholder that is shown when this control is empty.
#[builder(setter(into, strip_option))]
pub placeholder: Option<String>,
/// An optional regular expression string that validates the value on the
/// field. If the value does not match the regular expression, the text
/// field will appear red and its value will not be sent in a
/// [`ControlPacket`].
///
/// Despite what the Wireshark documentation says, back slashes in the the
/// regular expression string do not have to be escaped, just remember to
/// use a Rust raw string when defining them. (e.g. r"\d\d\d\d").
#[builder(setter(into, strip_option))]
pub validation: Option<String>,
/// The default value
#[builder(default, setter(into, strip_option))]
pub default_value: Option<String>,
}
impl StringControl {
/// Sets the value in the text field.
///
/// Panics: If the string is longer than 32767 bytes.
pub fn set_value<'a>(&self, message: &'a str) -> ControlPacket<'a> {
assert!(
message.as_bytes().len() <= 32767,
"message must not be longer than 32767 bytes"
);
ControlPacket::new_with_payload(
self.control_number,
ControlCommand::Set,
message.as_bytes(),
)
}
}
impl ToolbarControl for StringControl {
fn control_number(&self) -> u8 {
self.control_number
}
}
impl PrintSentence for StringControl {
fn format_sentence(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"control {{number={}}}{{type=string}}",
self.control_number()
)?;
write!(f, "{{display={}}}", self.display)?;
if let Some(tooltip) = &self.tooltip {
write!(f, "{{tooltip={}}}", tooltip)?;
}
if let Some(placeholder) = &self.placeholder {
write!(f, "{{placeholder={}}}", placeholder)?;
}
if let Some(validation) = &self.validation {
write!(f, "{{validation={}}}", validation)?;
}
if let Some(default_value) = &self.default_value {
write!(f, "{{default={}}}", default_value)?;
}
writeln!(f)
}
}
/// Controls provided by this extcap utility to use in a toolbar in the UI.
/// These controls are bidirectional and can be used to control the extcap
/// utility while capturing.
///
/// This is useful in scenarios where configuration can be done based on
/// findings in the capture process, setting temporary values or give other
/// inputs without restarting the current capture.
///
/// Communication from the extcap program to Wireshark is done through methods
/// on these controls like `set_enabled` or `set_value`, and the implementations
/// will create a corresponding control packet that can be sent to Wireshark
/// through [`ControlPacket::send`] or [`ControlPacket::send_async`].
///
/// All controls will be presented as GUI elements in a toolbar specific to the
/// extcap utility. The extcap must not rely on using those controls (they are
/// optional) because of other capturing tools not using GUI (e.g. tshark,
/// tfshark).
pub trait ToolbarControl: PrintSentence {
/// The control number, a unique identifier for this control.
fn control_number(&self) -> u8;
}
/// Control packets for the extcap interface. This is used for communication of
/// control data between Wireshark and this extcap program.
///
/// Reference:
/// <https://www.wireshark.org/docs/wsdg_html_chunked/ChCaptureExtcap.html#_messages>
#[derive(Debug, Nom, Clone, PartialEq, Eq)]
pub struct ControlPacket<'a> {
/// The common sync pipe indication. This protocol uses the value "T".
#[nom(Verify = "*sync_pipe_indication == b'T'")]
pub sync_pipe_indication: u8,
/// Length of `payload` + 2 bytes for `control_number` and `command`.
#[nom(Parse = "be_u24")]
pub message_length: u32,
/// Unique number to identify the control, as previously returned in the
/// `{control}` declarations returned in the
/// [`--extcap-interfaces`][crate::ExtcapArgs::extcap_interfaces] phase. This
/// number also gives the order of the controls in the interface toolbar.
/// The control number, a unique identifier for this control.
pub control_number: u8,
/// The command associated with this packet. See [`ControlCommand`] for
/// details.
pub command: ControlCommand,
/// Payload specific to the [`command`][Self::command]. For example, the
/// payload for [`StatusbarMessage`][ControlCommand::StatusbarMessage] is
/// the message string.
#[nom(Map = "Cow::from", Take = "(message_length - 2) as usize")]
pub payload: Cow<'a, [u8]>,
}
impl<'a> ControlPacket<'a> {
/// Creates a new control packet with a payload.
#[must_use]
pub fn new_with_payload<CowSlice: Into<Cow<'a, [u8]>>>(
control_number: u8,
command: ControlCommand,
payload: CowSlice,
) -> Self {
let payload = payload.into();
ControlPacket {
sync_pipe_indication: b'T',
message_length: (payload.len() + 2) as u32,
control_number,
command,
payload,
}
}
/// Creates a new control packet with an empty payload.
#[must_use]
pub fn new(control_number: u8, command: ControlCommand) -> Self {
let empty_slice: &'static [u8] = &[];
Self::new_with_payload(control_number, command, empty_slice)
}
/// Outputs the serialzied bytes of the header to send back to wireshark.
pub fn to_header_bytes(&self) -> [u8; 6] {
let mut bytes = [0_u8; 6];
bytes[0] = self.sync_pipe_indication;
bytes[1..4].copy_from_slice(&self.message_length.to_be_bytes()[1..]);
bytes[4] = self.control_number;
bytes[5] = self.command as u8;
bytes
}
/// Turns the given ControlPacket into a ControlPacket with fully owned data
/// and 'static lifetime.
pub fn into_owned(self) -> ControlPacket<'static> {
ControlPacket {
payload: match self.payload {
Cow::Borrowed(v) => Cow::Owned(v.to_vec()),
Cow::Owned(v) => Cow::Owned(v),
},
..self
}
}
/// Sends this control packet to Wireshark using the given `sender`.
#[cfg(feature = "sync")]
pub fn send(self, sender: &mut synchronous::ExtcapControlSender) -> std::io::Result<()> {
sender.send(self)
}
/// Sends this control packet to Wireshark using the given `sender`.
#[cfg(feature = "async")]
pub async fn send_async(
self,
sender: &mut asynchronous::ExtcapControlSender,
) -> tokio::io::Result<()> {
sender.send(self).await
}
}
/// The control command for the control packet. Note that a `ControlCommand` is
/// not valid for all control types, for example, the `Remove` command is
/// applicable only to [`SelectorControls`][SelectorControl], and `Initialized`
/// is only sent by Wireshark to this extcap program.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Nom)]
#[repr(u8)]
pub enum ControlCommand {
/// Sent by Wireshark to indicate that this extcap has been initialized and
/// is ready to accept packets.
Initialized = 0,
/// Either sent by Wireshark to indicate that the user has interacted with
/// one of the controls, or sent by the extcap program to change the value
/// on a given control.
///
/// Used by control types: [`BooleanControl`], [`ButtonControl`],
/// [`LoggerControl`], [`SelectorControl`], and [`StringControl`].
Set = 1,
/// Sent by the extcap program to add a value to the given logger or
/// selector.
///
/// Used by control types: [`LoggerControl`] and [`SelectorControl`].
Add = 2,
/// Sent by the extcap program to remove a value from the given selector.
///
/// Used by control types: [`SelectorControl`].
Remove = 3,
/// Sent by the extcap program to enable a given control.
///
/// Used by control types: [`BooleanControl`], [`ButtonControl`],
/// [`SelectorControl`], and [`StringControl`].
Enable = 4,
/// Sent by the extcap program to disable a given control.
///
/// Used by control types: [`BooleanControl`], [`ButtonControl`],
/// [`SelectorControl`], and [`StringControl`].
Disable = 5,
/// Sent by the extcap program to show a message in the status bar.
StatusbarMessage = 6,
/// Sent by the extcap program to show a message in an information dialog
/// popup.
InformationMessage = 7,
/// Sent by the extcap program to show a message in a warning dialog popup.
WarningMessage = 8,
/// Sent by the extcap program to show a message in an error dialog popup.
ErrorMessage = 9,
}
#[cfg(test)]
mod test {
use nom_derive::Parse;
use super::ControlPacket;
#[test]
fn test_to_bytes() {
let packet = ControlPacket::new_with_payload(
123,
super::ControlCommand::InformationMessage,
&b"testing123"[..],
);
let full_bytes = [&packet.to_header_bytes(), packet.payload.as_ref()].concat();
let (rem, parsed_packet) = ControlPacket::parse(&full_bytes).unwrap();
assert_eq!(packet, parsed_packet);
assert!(rem.is_empty());
}
}