aboutsummaryrefslogtreecommitdiff
path: root/networking/nameif.c
diff options
context:
space:
mode:
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