Skip to content
New issue

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

Bugfix Third Party Filtering #433

Open
wants to merge 8 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Get data from payload, not original packet
  • Loading branch information
F4FXL committed Dec 3, 2022
commit 157d87460b3de267056ed980d30f7668f878d0fd
4 changes: 3 additions & 1 deletion src/pfilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,9 @@ static int filt_t (pfstate_t *pf, char * typeChar)
print_error (pf, "Invalid third party payload\n");
return (0);
}
(void) ax25_get_info (pf->pp, (unsigned char **)(&infop));
memset (src, 0, sizeof(src));
ax25_get_addr_with_ssid (pp_payload, AX25_SOURCE, src);
(void) ax25_get_info (pp_payload, (unsigned char **)(&infop));
ax25_delete(pp_payload);
isThirdParty = 1;
}
Expand Down