nfqueue-go icon indicating copy to clipboard operation
nfqueue-go copied to clipboard

Go bindings for NFQueue

Results 5 nfqueue-go issues
Sort by recently updated
recently updated
newest added

I don't know if this is the right place, but I'm trying to build bettercap inside a Docker and it balks at this: # github.com/chifflier/nfqueue-go/nfqueue /go/pkg/mod/github.com/chifflier/[email protected]/nfqueue/nfqueue.go:187:29: could not determine kind...

Hello, how can i get ip from incoming packet?

Hi, Do you know why this line in (CreateQueue): `q.c_qh = C.nfq_create_queue(q.c_h,C.u_int16_t(queue_num),(*C.nfq_callback)(C.c_nfq_cb),unsafe.Pointer(q))` Is halting build with the error: > panic: runtime error: cgo argument has Go pointer to Go pointer...

I know nfqueue can modify packets queued by linux kernel , but I cannot find the production situation of such cases, could you please give me some introduction ? Thanks

Hi all, Is it possible to have a callback method which is of any specific type? example: ``` type nfqCallback struct { pool *redis.Pool } func(n nfqCallback) real_callback(payload *nfqueue.Payload) int...