From 10d1a6a736ef2d983ff3a9a10e5157943aa6c140 Mon Sep 17 00:00:00 2001 From: Dmitry Savintsev Date: Wed, 3 Aug 2022 14:29:53 +0000 Subject: [PATCH] use aya-log's 'info' macro --- tcbpftest-ebpf/src/main.rs | 1 + tcbpftest/src/main.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/tcbpftest-ebpf/src/main.rs b/tcbpftest-ebpf/src/main.rs index 173892a..8dd66c5 100644 --- a/tcbpftest-ebpf/src/main.rs +++ b/tcbpftest-ebpf/src/main.rs @@ -105,6 +105,7 @@ unsafe fn try_tcbpftest(ctx: TcContext) -> Result { unsafe { EVENTS.output(&ctx, &log_entry, 0); } + info!(&ctx, "packet:"); Ok(0) } diff --git a/tcbpftest/src/main.rs b/tcbpftest/src/main.rs index 484d1a6..f5f6bcc 100644 --- a/tcbpftest/src/main.rs +++ b/tcbpftest/src/main.rs @@ -66,6 +66,7 @@ async fn main() -> Result<(), anyhow::Error> { for buf in buffers.iter_mut().take(events.read) { let ptr = buf.as_ptr() as *const PacketLog; let data = unsafe { ptr.read_unaligned() }; + /* println!( "LOG: LEN {}, CTX_LEN {}, UDP_LEN {}, SRC_IP {}, DEST_IP {}, ETH_PROTO 0x{:X}, ETH_PROTO2 0x{:X}, IP_PROTO {}, REMOTE_PORT {}, REMOTE_PORT2 {}, LOCAL_PORT {}, LOCAL_PORT2 {}", data.len, @@ -81,6 +82,7 @@ async fn main() -> Result<(), anyhow::Error> { data.local_port, data.local_port2, ); + */ } } });