xref: /aosp_15_r20/external/ltp/include/lapi/if_addr.h (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2021 Petr Vorel <[email protected]>
4  */
5 
6 #ifndef LAPI_IF_ADDR_H__
7 #define LAPI_IF_ADDR_H__
8 
9 #include <linux/if_addr.h>
10 
11 #ifndef IFA_FLAGS
12 # define IFA_FLAGS 8
13 #endif
14 
15 #ifndef IFA_F_NOPREFIXROUTE
16 # define IFA_F_NOPREFIXROUTE	0x200
17 #endif
18 
19 #endif /* LAPI_IF_ADDR_H__ */
20