diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-05-17 20:22:29 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-05-18 18:22:40 +0200 |
commit | 95cf21ef8c098369a54e8bd2ec97f1b56433c928 (patch) | |
tree | 3682a3e5574a1f3d92eda6444499f942a527da7e /package/dhcpdump/dhcpdump-1.8-use-non-bsd-structures.patch | |
parent | e3bf4de3298ec01cf6d91bc55758b4e605b52b88 (diff) | |
download | buildroot-95cf21ef8c098369a54e8bd2ec97f1b56433c928.tar.gz buildroot-95cf21ef8c098369a54e8bd2ec97f1b56433c928.zip |
dhcpdump: move as a proper package, bump version
dhcpdump 1.7 required tcpdump, but version 1.8 now uses libpcap
instead. Also version 1.8 is no longer autotools based, but just a
simple Makefile.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/dhcpdump/dhcpdump-1.8-use-non-bsd-structures.patch')
-rw-r--r-- | package/dhcpdump/dhcpdump-1.8-use-non-bsd-structures.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/package/dhcpdump/dhcpdump-1.8-use-non-bsd-structures.patch b/package/dhcpdump/dhcpdump-1.8-use-non-bsd-structures.patch new file mode 100644 index 0000000000..40115fb640 --- /dev/null +++ b/package/dhcpdump/dhcpdump-1.8-use-non-bsd-structures.patch @@ -0,0 +1,23 @@ +The udphdr structure has uh_* fields when _FAVOR_BSD is +defined. Otherwise, the fields are just named source, dest, len and +check. See <netinet/udp.h>. + +Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> + +Index: dhcpdump-1.8/dhcpdump.c +=================================================================== +--- dhcpdump-1.8.orig/dhcpdump.c 2011-05-17 20:20:46.506980003 +0200 ++++ dhcpdump-1.8/dhcpdump.c 2011-05-17 20:20:59.338979999 +0200 +@@ -163,10 +163,10 @@ + strcpy(ip_origin, (u_char *)inet_ntoa(ip->ip_src)); + strcpy(ip_destination, (u_char *)inet_ntoa(ip->ip_dst)); + +- if (hmask && check_ch((u_char *)(sp + offset), ntohs(udp->uh_ulen))) ++ if (hmask && check_ch((u_char *)(sp + offset), ntohs(udp->len))) + return; + +- printdata((u_char *)(sp + offset), ntohs(udp->uh_ulen)); ++ printdata((u_char *)(sp + offset), ntohs(udp->len)); + } + + // check for matching CHADDR (Peter Apian-Bennewitz <apian@ise.fhg.de>) |