Displaying 4 results from an estimated 4 matches for "lantw44".
2014 Jun 20
3
[Bug 963] New: nfq_udp_get_payload and nfq_udp_get_payload_len return wrong results
...roduct: libnetfilter_queue
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P5
Component: libnetfilter_queue
AssignedTo: netfilter-buglog at lists.netfilter.org
ReportedBy: lantw44 at gmail.com
Estimated Hours: 0.0
nfq_udp_get_payload:
udph->len is the length of packet, not the length of the UDP header.
UDP header is a constant, which equals sizeof(struct udphdr).
nfq_udp_get_payload_len:
pktb->tail - pktb->transport_header is the length of entire UDP pac...
2014 Jun 07
1
[Bug 957] New: [PATCH] Wrong function name in libnetfilter_queue/libnetfilter_queue_ipv6.h
...roduct: libnetfilter_queue
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P5
Component: libnetfilter_queue
AssignedTo: netfilter-buglog at lists.netfilter.org
ReportedBy: lantw44 at gmail.com
Estimated Hours: 0.0
Created attachment 445
--> https://bugzilla.netfilter.org/attachment.cgi?id=445
include: fix wrong function name in the header
Function nfq_ip6hdr_snprintf() does not exist. It should be changed to
nfq_ip6_snprintf().
--
Configure bugmail: https://bugz...
2014 Jun 20
0
[Bug 962] New: [PATCH] nfq_ip_snprintf always shows the same address in SRC and DST
...roduct: libnetfilter_queue
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P5
Component: libnetfilter_queue
AssignedTo: netfilter-buglog at lists.netfilter.org
ReportedBy: lantw44 at gmail.com
Estimated Hours: 0.0
Created attachment 446
--> https://bugzilla.netfilter.org/attachment.cgi?id=446
extra: use inet_ntop instead of inet_ntoa
inet_ntoa() cannot be used twice in the same snprintf() call. I replace
inet_ntoa() with inet_ntop() and the problem is fixed.
--...
2014 Dec 30
2
[Bug 993] New: nft produces incorrect output when a reject rule is added using nft -f
...added using nft -f
Product: nftables
Version: unspecified
Hardware: x86_64
OS: Fedora
Status: NEW
Severity: normal
Priority: P5
Component: nft
Assignee: pablo at netfilter.org
Reporter: lantw44 at gmail.com
When I inserted this simple rule using 'nft -f':
table inet filter {
chain input {
reject with icmp type host-prohibited
}
}
'nft list table inet filter' showed differenct output:
table inet filter {
chain input {
reject
}
}
Things aft...