We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if (bpf_program_str && (err = pcap_thread_set_filter(&pcap_thread, bpf_program_str, 0))) {
The last parameter must not be 0, but must be strlen(bpf_program_str)
The text was updated successfully, but these errors were encountered:
02a7621
Merge pull request #83 from jelu/waaat-oops
e4e61ce
Fix #82: Oops, `pcap_thread_set_filter()` had changed during developm…
No branches or pull requests
if (bpf_program_str && (err = pcap_thread_set_filter(&pcap_thread, bpf_program_str, 0))) {
The last parameter must not be 0, but must be strlen(bpf_program_str)
The text was updated successfully, but these errors were encountered: