You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, there is no way to set the SEESENT parameter of the BPF packet capturing system in bsdbpf.
Since I use the system for creating a VPN interface (best way to create a TAP-type VPN on macOS known so far afaik), I have no interest in the sent packets at all. In fact, I explicitly do not want to handle them.
BPF does offer the SEESENT ioctl for this. Sadly, while the BPF sniffer allows configuring almost all other options I need, this one is not supported.
Right now, there is no way to set the
SEESENT
parameter of the BPF packet capturing system in bsdbpf.Since I use the system for creating a VPN interface (best way to create a TAP-type VPN on macOS known so far afaik), I have no interest in the sent packets at all. In fact, I explicitly do not want to handle them.
BPF does offer the
SEESENT
ioctl for this. Sadly, while the BPF sniffer allows configuring almost all other options I need, this one is not supported.Right now, the way I work around this problem is with some quite hacky reflection, like (for full context refer to: https://github.com/Doridian/water/blob/main/syscalls_darwin.go#L237-L262 ):
The text was updated successfully, but these errors were encountered: