summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/libpcap/libpcap-1.3.0/ieee80215-arphrd.patch
diff options
context:
space:
mode:
authorCristian Iorga <cristian.iorga@intel.com>2012-07-24 08:36:57 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-26 14:55:20 +0100
commit3ca4f1740dd8289d08f3be3a43cd39d1d28808be (patch)
tree63ace9ac0c318bc27717390e07db9cf0d3229495 /meta/recipes-connectivity/libpcap/libpcap-1.3.0/ieee80215-arphrd.patch
parent8462bcc7fd3382567881a5cf0bb513d45768b44b (diff)
downloadpoky-3ca4f1740dd8289d08f3be3a43cd39d1d28808be.tar.gz
libpcap: upgrade to ver. 1.3
(From OE-Core rev: 3f0cc742ea5d4788df26bb0592c294e5a67e1093) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/libpcap/libpcap-1.3.0/ieee80215-arphrd.patch')
-rw-r--r--meta/recipes-connectivity/libpcap/libpcap-1.3.0/ieee80215-arphrd.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/libpcap/libpcap-1.3.0/ieee80215-arphrd.patch b/meta/recipes-connectivity/libpcap/libpcap-1.3.0/ieee80215-arphrd.patch
new file mode 100644
index 0000000000..2f5cd213bc
--- /dev/null
+++ b/meta/recipes-connectivity/libpcap/libpcap-1.3.0/ieee80215-arphrd.patch
@@ -0,0 +1,24 @@
1Upstream-Status: Pending
2
3Index: libpcap-1.0.0/pcap-linux.c
4===================================================================
5--- libpcap-1.0.0.orig/pcap-linux.c 2009-01-28 11:58:54.000000000 +0300
6+++ libpcap-1.0.0/pcap-linux.c 2009-01-28 11:59:04.000000000 +0300
7@@ -1616,6 +1616,17 @@
8 * so let's use "Linux-cooked" mode. Jean II */
9 //handle->md.cooked = 1;
10 break;
11+#ifndef ARPHRD_IEEE80215
12+#define ARPHRD_IEEE80215 805
13+#endif
14+#ifndef ARPHRD_IEEE80215_PHY
15+#define ARPHRD_IEEE80215_PHY 806
16+#endif
17+
18+ case ARPHRD_IEEE80215:
19+ case ARPHRD_IEEE80215_PHY:
20+ handle->linktype = DLT_IEEE802_15_4;
21+ break;
22
23 /* ARPHRD_LAPD is unofficial and randomly allocated, if reallocation
24 * is needed, please report it to <daniele@orlandi.com> */