diff options
author | Christian Eggers | 2020-06-29 17:57:26 +0200 |
---|---|---|
committer | Denys Vlasenko | 2020-07-31 18:48:50 +0200 |
commit | 8a485b0a363935309f976866b8a30988362fadc0 (patch) | |
tree | 96ba6cde1ef879fc4dd7616e20de3c5b189eea90 /networking/libiproute/ip_common.h | |
parent | 31d34f3bd8b0cc41db5e893942d9dc5c14e4dd3c (diff) | |
download | busybox-8a485b0a363935309f976866b8a30988362fadc0.zip busybox-8a485b0a363935309f976866b8a30988362fadc0.tar.gz |
ip address: Add support for "valid_lft" and "preferred_lft" options
Signed-off-by: Christian Eggers <ceggers@arri.de>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/libiproute/ip_common.h')
-rw-r--r-- | networking/libiproute/ip_common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/networking/libiproute/ip_common.h b/networking/libiproute/ip_common.h index 40171be..894e380 100644 --- a/networking/libiproute/ip_common.h +++ b/networking/libiproute/ip_common.h @@ -33,4 +33,8 @@ int FAST_FUNC do_iplink(char **argv); POP_SAVED_FUNCTION_VISIBILITY +#ifndef INFINITY_LIFE_TIME +#define INFINITY_LIFE_TIME 0xFFFFFFFFU +#endif + #endif |