Compare commits

..

No commits in common. "master" and "v0.0.2" have entirely different histories.

3 changed files with 1 additions and 10 deletions

2
go.mod
View File

@ -1,6 +1,6 @@
module b612.me/bcap module b612.me/bcap
go 1.20 go 1.22.4
require ( require (
github.com/florianl/go-nfqueue/v2 v2.0.0 github.com/florianl/go-nfqueue/v2 v2.0.0

View File

@ -17,10 +17,6 @@ type NetCatch struct {
stopFn context.CancelFunc stopFn context.CancelFunc
} }
func (n *NetCatch) Recall() func(gopacket.Packet) {
return n.fn
}
func (n *NetCatch) SetRecall(fn func(p gopacket.Packet)) { func (n *NetCatch) SetRecall(fn func(p gopacket.Packet)) {
n.fn = fn n.fn = fn
} }
@ -64,7 +60,6 @@ func NewCatchEth(eth string, sentence string) (*NetCatch, error) {
nc := new(NetCatch) nc := new(NetCatch)
nc.eth = eth nc.eth = eth
nc.sentence = sentence nc.sentence = sentence
nc.ctx, nc.stopFn = context.WithCancel(context.Background())
return nc, nil return nc, nil
} }

View File

@ -17,10 +17,6 @@ type NfQueue struct {
recallFn func(id uint32, q *nfqueue.Nfqueue, p Packet) recallFn func(id uint32, q *nfqueue.Nfqueue, p Packet)
} }
func (n *NfQueue) RecallFn() func(id uint32, q *nfqueue.Nfqueue, p Packet) {
return n.recallFn
}
type Packet struct { type Packet struct {
Packet gopacket.Packet Packet gopacket.Packet
Attr nfqueue.Attribute Attr nfqueue.Attribute