代码拉取完成,页面将自动刷新
package sniffer
import (
"fmt"
"io"
"time"
"github.com/tsg/gopacket"
"github.com/tsg/gopacket/layers"
"github.com/tsg/gopacket/pcap"
"github.com/elastic/beats/libbeat/logp"
)
type fileHandler struct {
pcapHandle *pcap.Handle
file string
loopCount, maxLoopCount int
topSpeed bool
lastTS time.Time
}
func newFileHandler(file string, topSpeed bool, maxLoopCount int) (*fileHandler, error) {
h := &fileHandler{
file: file,
topSpeed: topSpeed,
maxLoopCount: maxLoopCount,
}
if err := h.open(); err != nil {
return nil, err
}
return h, nil
}
func (h *fileHandler) open() error {
tmp, err := pcap.OpenOffline(h.file)
if err != nil {
return err
}
h.pcapHandle = tmp
return nil
}
func (h *fileHandler) ReadPacketData() ([]byte, gopacket.CaptureInfo, error) {
data, ci, err := h.pcapHandle.ReadPacketData()
if err != nil {
if err != io.EOF {
return data, ci, err
}
h.pcapHandle.Close()
h.pcapHandle = nil
h.loopCount++
if h.loopCount >= h.maxLoopCount {
return data, ci, err
}
logp.Debug("sniffer", "Reopening the file")
if err = h.open(); err != nil {
return nil, ci, fmt.Errorf("Error reopening file: %s", err)
}
data, ci, err = h.pcapHandle.ReadPacketData()
h.lastTS = ci.Timestamp
return data, ci, err
}
if h.topSpeed {
return data, ci, nil
}
if !h.lastTS.IsZero() {
sleep := ci.Timestamp.Sub(h.lastTS)
if sleep > 0 {
time.Sleep(sleep)
} else {
logp.Warn("Time in pcap went backwards: %d", sleep)
}
}
h.lastTS = ci.Timestamp
ci.Timestamp = time.Now()
return data, ci, nil
}
func (h *fileHandler) LinkType() layers.LinkType {
return h.pcapHandle.LinkType()
}
func (h *fileHandler) Close() {
if h.pcapHandle != nil {
h.pcapHandle.Close()
h.pcapHandle = nil
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。