aboutsummaryrefslogtreecommitdiff
path: root/networking/nameif.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-01-14 08:54:08 +0000
committerEric Andersen <andersen@codepoet.org>2003-01-14 08:54:08 +0000
commitab4e19afc66e13b6aac7429fdce95d2aa7cb15ae (patch)
tree712b347dc89d890fe0d5755ebbbe9c23eb891a4c /networking/nameif.c
parent92a06d0943a7890b6e69d9ad955feb6d138713b7 (diff)
downloadbusybox-w32-ab4e19afc66e13b6aac7429fdce95d2aa7cb15ae.tar.gz
busybox-w32-ab4e19afc66e13b6aac7429fdce95d2aa7cb15ae.tar.bz2
busybox-w32-ab4e19afc66e13b6aac7429fdce95d2aa7cb15ae.zip
Eliminate most instances where we use linux kernel headers
-Erik
Diffstat (limited to 'networking/nameif.c')
-rw-r--r--networking/nameif.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/networking/nameif.c b/networking/nameif.c
index a9d422110..886ff49a8 100644
--- a/networking/nameif.c
+++ b/networking/nameif.c
@@ -32,10 +32,12 @@
32#include <string.h> 32#include <string.h>
33#include <net/if.h> 33#include <net/if.h>
34#include <netinet/ether.h> 34#include <netinet/ether.h>
35#include <linux/sockios.h>
36 35
37#include "busybox.h" 36#include "busybox.h"
38 37
38/* take from linux/sockios.h */
39#define SIOCSIFNAME 0x8923 /* set interface name */
40
39/* Octets in one ethernet addr, from <linux/if_ether.h> */ 41/* Octets in one ethernet addr, from <linux/if_ether.h> */
40#define ETH_ALEN 6 42#define ETH_ALEN 6
41 43