From abfc67cb6bcbd79c50320a14025cabf00d952608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E6=80=9D=E6=95=8F?= Date: Mon, 29 Aug 2022 09:19:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index 7b6d867..cc95037 100644 --- a/main.go +++ b/main.go @@ -9,6 +9,7 @@ import ( "github.com/songgao/packets/ethernet" "github.com/songgao/water" + "github.com/songgao/water/waterutil" ) func init() { @@ -68,6 +69,7 @@ func testmain() { } frame = frame[:n] + log.Printf("DstMac: %s SrcMac: %s\n", waterutil.MACDestination(frame), waterutil.MACSource(frame)) log.Printf("Dst: %s Src: %s\n", frame.Destination(), frame.Source()) log.Printf("Ethertype: % x\n", frame.Ethertype()) // log.Printf("Payload: % x\n", frame.Payload())