mirror of
https://github.com/zr-hebo/sniffer-agent.git
synced 2025-09-18 17:56:52 +08:00
12 lines
142 B
Go
12 lines
142 B
Go
package capture
|
|
|
|
import (
|
|
"github.com/google/gopacket/layers"
|
|
)
|
|
|
|
type TCPIPPair struct {
|
|
srcIP string
|
|
dstIP string
|
|
tcpPkt *layers.TCP
|
|
}
|