aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute/ipaddress.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-05 14:01:04 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-05 14:01:04 +0000
commit9b6f4aa8e802c0811a45c36c572ade2036d46a4a (patch)
tree358e3c452d0ce02c599a0d34f33f17e93baf1f65 /networking/libiproute/ipaddress.c
parentf592aa36f33430b866e9d7c975c6b9c356100d4b (diff)
downloadbusybox-9b6f4aa8e802c0811a45c36c572ade2036d46a4a.tar.gz
ip: support for the LOWER_UP flag by Natanael Copa <natanael.copa@gmail.com>.
~50 bytes code growth.
Diffstat (limited to 'networking/libiproute/ipaddress.c')
-rw-r--r--networking/libiproute/ipaddress.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c
index 3bf854e11..07b27870d 100644
--- a/networking/libiproute/ipaddress.c
+++ b/networking/libiproute/ipaddress.c
@@ -18,6 +18,10 @@
#include "rt_names.h"
#include "utils.h"
+#ifndef IFF_LOWER_UP
+/* from linux/if.h */
+#define IFF_LOWER_UP 0x10000 /* driver signals L1 up*/
+#endif
typedef struct filter_t {
char *label;
@@ -63,6 +67,7 @@ static void print_link_flags(unsigned flags, unsigned mdown)
_PF(NOTRAILERS);
#endif
_PF(UP);
+ _PF(LOWER_UP);
#undef _PF
if (flags)
printf("%x", flags);