Skip to content

Commit

Permalink
Merge branch 'ui_stability' into lts2_client
Browse files Browse the repository at this point in the history
  • Loading branch information
thebracket committed Oct 24, 2024
2 parents b79a81b + a0b5edc commit 86ca158
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/rust/lqos_sys/src/flowbee_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use zerocopy::FromBytes;
use lqos_utils::units::DownUpOrder;

/// Representation of the eBPF `flow_key_t` type.
#[derive(Debug, Clone, Default, PartialEq, Eq, Hash, FromBytes)]
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Hash, FromBytes)]
#[repr(C)]
pub struct FlowbeeKey {
/// Mapped `XdpIpAddress` source for the flow.
Expand All @@ -25,7 +25,7 @@ pub struct FlowbeeKey {
}

/// Mapped representation of the eBPF `flow_data_t` type.
#[derive(Debug, Clone, Default, FromBytes)]
#[derive(Debug, Clone, Copy, Default, FromBytes)]
#[repr(C)]
pub struct FlowbeeData {
/// Time (nanos) when the connection was established
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use serde::Serialize;

use lqos_sys::flowbee_data::FlowbeeKey;

#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize)]
pub enum FlowProtocol {
Smtp,
Ftp,
Expand Down

0 comments on commit 86ca158

Please sign in to comment.