代码拉取完成,页面将自动刷新
// package pcaphelper
package pcaphelper
import (
"github.com/google/gopacket/pcap"
"github.com/pkg/errors"
)
// PcapHelper
type PcapHelper struct{ handle *pcap.Handle }
// New Create the Sniffer instance
func New(devName string) (*PcapHelper, error) {
handle, err := pcap.OpenLive(devName, 65535, true, pcap.BlockForever)
if err != nil {
return nil, err
}
return &PcapHelper{handle}, nil
}
// Close the pcap handle
func (p *PcapHelper) Close() {
_ = p.SetDireAndBPF(pcap.DirectionInOut, "") // 避免因为bpf导致没有捕获到任何数据包,handle将无法关闭。
go p.handle.Close()
}
// SetDireAndBPF 设置捕获方向和 BPF 过滤
func (p *PcapHelper) SetDireAndBPF(dire pcap.Direction, bpfExpr string) error {
if err := p.handle.SetBPFFilter(bpfExpr); err != nil {
return errors.Wrap(err, "failed to set BPF filter")
}
return errors.Wrap(p.handle.SetDirection(dire), "failed to set direction")
}
// MustSetDireAndBPF 设置捕获方向和 BPF 过滤
func (p *PcapHelper) MustSetDireAndBPF(dire pcap.Direction, bpfExpr string) *PcapHelper {
if err := p.SetDireAndBPF(dire, bpfExpr); err != nil {
panic(err)
}
return p
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。