Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Oct 5, 2024
1 parent 5c7aec6 commit 4678af2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oryx-tui/src/ebpf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl Ebpf {
notification_sender: kanal::Sender<Event>,
data_sender: kanal::Sender<[u8; RawPacket::LEN]>,
filter_channel_receiver: kanal::Receiver<(Protocol, bool)>,
firewall_channel_receiver: kanal::Receiver<(Protocol, bool)>,
_firewall_channel_receiver: kanal::Receiver<(Protocol, bool)>,
terminate: Arc<AtomicBool>,
) {
thread::spawn({
Expand Down Expand Up @@ -221,7 +221,7 @@ impl Ebpf {
notification_sender: kanal::Sender<Event>,
data_sender: kanal::Sender<[u8; RawPacket::LEN]>,
filter_channel_receiver: kanal::Receiver<(Protocol, bool)>,
firewall_channel_receiver: kanal::Receiver<(Protocol, bool)>,
_firewall_channel_receiver: kanal::Receiver<(Protocol, bool)>,
terminate: Arc<AtomicBool>,
) {
thread::spawn({
Expand Down

0 comments on commit 4678af2

Please sign in to comment.